Unable To Mount NTFS Partition From Linux

Unable To Mount NTFS Partition From Linux

If you have dual boot in your laptop with Linux and Windows installed, you might face this kind of problems, when windows is not properly shutdown. Generally, from windows 8 and onward “Turn on fast startup” is checked by default to reduce boot time in windows. This increases the boot time but for dual boot who specially works on Linux face this error if they didn’t shutdown windows properly. Now, Lets solve the problem without…

Read full Article Read More

Cannot Push New Files In Github Repo

Cannot Push New Files In Github Repo

There might be some condition like mine, when I tried to push newly created file in github repo of that project but everytime I commited and pushed, samething happens. There was no existence of new file which I had created in local repo. If his is your condition then just do the following few steps. Step 1:  Add files in staging area before you push it Its simple follow the command. Just make sure do…

Read full Article Read More

How to fix DNS_PROBE_FINISHED_NXDOMAIN?

How to fix DNS_PROBE_FINISHED_NXDOMAIN?

I am currently facing DNS_PROBE_FINISHED_NXDOMAIN status when I try to visit www.outlook.com. At first, I thought that outlook service is down for certain time. After this problem gets repeated time to time, I thought to do some research to resolve this problem. Here is the solution for UBUNTU: Step 1: Open terminal. Type or copy the following command: sudo nano /etc/resolv.conf Step 2: Add the following line: nameserver 8.8.8.8 nameserver 8.8.4.4 Step 3: Then save and restart…

Read full Article Read More

Phpmyadmin Not Working After Installing In Linux

Phpmyadmin Not Working After Installing In Linux

Its easy to install phpmyadmin in normal case but in some case you have to go through the following command. For normal case sudo apt-get install phpmyadmin but in some cases although the installation is successful, you can’t access phpmyadmin panel by localhost/phpmyadmin on browser. For that case just add one line below in apache2.conf file. gksu gedit /etc/apache2/apache2.conf Then add the following line to the end of the file. Include /etc/phpmyadmin/apache.conf Then restart apache…

Read full Article Read More

How to edit hostname and hosts on Linux ?

How to edit hostname and hosts on Linux ?

Lets get direct to the command what it means: To edit hostname for the user , go to the command line ( Ctrl + Alt + T)  then use the following ommands. sudo gedit /etc/hostname In place of gedit you can use any text editor. And, for hosts sudo gedit /etc/hosts which results 127.0.0.1 localhost 127.0.1.1 saggi # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1…

Read full Article Read More

Unable to restart apache2 sever on ubuntu 14.04

Unable to restart apache2 sever on ubuntu 14.04

Recently, when I was restarting apache2 server then I encountered following problem: **”AH00558: apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1. Set the ‘ServerName’ directive globally to suppress this message”** Solution for the given problem is below two lines: 1.echo “ServerName localhost” | sudo tee /etc/apache2/conf-available/fqdn.conf 2.sudo ln -s /etc/apache2/conf-available/fqdn.conf /etc/apache2/conf-enabled/fqdn.conf For more visit this site: https://help.ubuntu.com/community/ApacheMySQLPHP Enjoy !

How to add SublimeREPL in sublime-text2 and sublime-text3?

How to add SublimeREPL in sublime-text2 and sublime-text3?

Did your sublime text return “EOF when reading a line” error message when you press CTRL + b? If yes then you might not have SublimeREPL package installed in your system. Here is the easy way to install SublimeREPL. Step 1: CTRL + ` or view -> show console to open the console Step 2: Then copy and paste the following code in the console. For sublime2: import urllib2,os,hashlib; h = ‘2915d1851351e5ee549c20394736b442’ + ‘8bc59f460fa1548d1514676163dafc88’; pf…

Read full Article Read More

LTSP e-library monitoring @lele, Lalitpur, Nepal

LTSP e-library monitoring @lele, Lalitpur, Nepal

LTSP(Linux Terminal Server Project) e-library or electronic library is project initiated by Help Nepal Network (HeNN) in Nepal. More than 30 e-library  had been deployed till now with the student volunteers from Kathmandu University(KU) and Pulchok Campus(recently). Being involved in this project for around 3 years, I have found a lot of benefits to the government and rural schools who were deprived of IT world. Under this project, we were deploying a powerful server with…

Read full Article Read More

How to install python and pygame in ubuntu?

How to install python and pygame in ubuntu?

Here are few instruction to install python and pygame in your linux system. Copy or type following command in your linux terminal. sudo apt-get install python-2.7 To further install idle in your system you need to type following command. sudo apt-get install idle To install pygame you have to type following command. sudo apt-get install python-pygame