- Use shortcut keys
To take a screenshot, use the following shortcut keys:
Default Shortcut Keys |
... [READ MORE]
Know/Check Ram Type in Linux
sudo dmidecode –type 17
Type your password and press Enter. The details of your ram will be shown.
Can’t boot into Ubuntu after upgrading.
installation of new packages.
To solve this, boot in to Ubuntu. You will be stuck in the Ubuntu Logo.
In there press ALT + CTRL + F1.
You will get a terminal.
Login to your account there in the terminal by typing your username first and password second.
Then Enter the following commands in the terminal.
Block a site on all browsers in Linux
Open Terminal (ALT+F2).
gedit /etc/hosts
... [READ MORE]
Can’t Boot Ubuntu after installing Nvidia Driver Fix 2
Here is the second solution if first solution didn’t wok.
Since you get a terminal when you boot in to Ubuntu.
Login to your account in the terminal
Then run the command.... [READ MORE]
How to remove an item from GRUB boot menu
Follow these steps.
Backup your GRUB configuration file which is in /boot/grub/grub.cfg which we will need if something goes wrong.
Open Terminal (Applications -> Accessories -> Terminal). You need to be the root. For that :... [READ MORE]
How to Repair/Restore/Reinstall GRUB Using Ubuntu Live CD
GRUB is the default bootloader of Linux. It is installed on your Hard Disk, but it’s not accessible as a drive. GRUB is installed on your Hard Disk when you install a Linux Operating System.
Without GRUB, you can’t boot in to OSs. Windows, Mac and other OS have their own bootloader. Linux too have different bootloaders. GRUB, BURG are examples.
When you install Windows after you install Ubuntu, Windows replaces the GRUB in the Hard Disk to Windows’ boot loader which won’t identify Linux systems (Damn you Windows !). But, our GRUB detects every OS. So, it’s better to have GRUB over Windows Boot Loader.
... [READ MORE]How to make a transparent background/selection on an image using GIMP
Select Edit – Clear. This makes the selection transparent.
Save the file.
Upload more than 1 MB file in PHP.
Open Root Terminal (Applications -> System Tools -> Root Terminal).
Type
sudo gedit /etc/php5/apache2/php.ini
and press enter key.
You will get gedit application with the php.in file.
Search for the words post_max_size & upload_max_filesize.
If you found the words you will see a = after the word post_max_size & upload_max_filesize.
Change the number as you want (Default will be 1M or 2M).
After editing save the file and restart Apache Web Server by opening Root Terminal and pasting this code
How To Create A Localhost Web Site In Linux Using Apache Web Server
Localhost is a hosting place in your own computer. There are a vast number of Localhost servers you can use. The most used and popular of them is Apache. Localhost enables you to test your work on your computer itself, instead of testing on a live server on the web. If you are creating a project, Localhost is the best place to test that project. In this tutorial I will show you how to create a localhost site running on Apache Server in any Linux Distribution.