Showing posts with label installing. Show all posts
Showing posts with label installing. Show all posts

Saturday, March 22, 2014

Installing Printers and Printer Drivers

(The drivers for the printer were already copied to a folder on the Hard Drive of the PC.)

- Hook up the printer to the computer.
- When the add printer wizard comes up, let it go through the screens until it gets to a dialog asking where to look for the drivers. Check to browse on the Hard Drive and navigate to the folder where the drivers were copied.
- Go through the next screens.
- If the printer drivers installed successfully, there will be a balloon window saying so.
- It should also prompt you to print a test page.
- Print the test page, and then you know that youre good to go.
Read more »

Tuesday, February 18, 2014

Reinstall GRUB2 after installing Windows

If you install Windows after installing Linux, windows will erase Linuxs GRUB. You have to re-install GRUB which will allow you to boot both Windows and Linux.

Reinstalling GRUB legacy was very easy but now with GRUB2 you have to do little more.

Follow the steps below, you need to know where your / (root) partition is. 

Boot your computer from Ubuntu Live CD.
Choose Try Live CD
Once the desktop loads, Open Terminal from Applications menu -> Accessories
Type: sudo  fdisk -l
From here you can figure out your root partition.

Now if your root partition is /dev/sda1 follow the following commands below:
sudo mount /dev/sda1 /mnt
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc

Now chroot to /mnt:
sudo chroot /mnt

Now install grub:
grub-install /dev/sda

Now update the grub:
update-grub2 && update-grub

Now you will see the GRUB and can boot between Linux and Windows. If you dont see the Windows option in GRUB menu, open the Linux that is present in GRUB and run the last command of this tutorial.
Read more »