Friday, September 30, 2011

Lost your grub after windows installation.. How to update, reinstall the grub in (BOSS) Linux?

Scenario:
  Once windows(vista, 7, xp) installed after the linux installation then one will lost his grub and there is no way to select the OS during the system startup(Dual Boot).  By default windows installs its boot loader into the MBR and not care about the other OS in the same machine.
So how to get the old grub with the new Windows OS entry in it..? here follows the steps..

1. Insert your BOSS Linux DVD(live, install, utility all are in the same DVD) in the drive and reboot your
system.
2. Select the live option and boot your system in live mode.
3. Click and mount the Linux partition whose grub is going to be used.
4. Now copy the mount location in the addressbar(location: it is somewhat like /media/some_chars_numbers)
5. Open your "root terminal" Applications --@ Accessories --@ Root terminal and issue the following commands
6. #mount --bind /dev /media/some_chars_numbers/dev
7. #chroot /media/some_chars_numbers
8. #update-grub
This updates the grub with the newly installed Windows OS entry in it
9. #grub-install /dev/sda
This installs the grub in the MBR(Master Boot Record).

Thats all.. now reboot the system and remove the DVD.  Now system will loads with the new updated grub where you can see all the OS available in your system and you can select(dual/multi boot) the OS which you want to login.  That's all :)

How to configure TVS Dot matrix printer in BOSS

1. Click on System -> Administration -> Printing.  Give root password if prompted, a GUI application will open.
2. Click on Server -> Add -> printer.  If your dot matrix printer is connected with your system then it will be automatically get detected, then click on the printer name and click the forward button.
3.  Now you can see the driver for your printer model
if so select and forward else select the Epson-150 driver(it is very generic driver supports most of the dot-matrix printer.)

Note:
Once your printer configured successfully you can share your printers with others(who are connected with your computer with LAN cord) easily.  For that you need to enable the shared option by System -> Administration -> Printing -> right click on the printer icon -> properties -> Policies -> tick mark on the option "Shared"

Saturday, September 17, 2011

How to enabe touchpad in BOSS GNU/Linux?

Do the following steps
Click -> System -> Preferences -> Mouse
Now you will get a application opened like this.



Now click on tab "touch pad" and enable the option by click tick mark on
"Enable mouse clicks with touchpad"
thats all now you can use your touch pad.. :)

Sunday, September 11, 2011

Openoffice Send -> document as email, email as pdf not working in Linux? How to fix it..

First Check whether Openoffice is configured for internet or not and is it configured correctly.
 How to check it?
  Open your openoffice writer -> tools -> Options -> Internet -> Email

See whether the Configured email program is correct, do you installed that particular email program(say for ex: evolution, thunderbird, icedove).

Openoffice writer -> Tools -> Options -> Internet
1.  If the email program is not installed then install it.
or

2.  If you are using another email program then update the path(invoking command) of that email program there.


Now it will work.  Thats all...!


Tuesday, September 6, 2011

No display and Input signal out of range error in Linux?

Some times after the installation of linux(Debian based) one will end-up with the terminal and no GUI.  So, how can we fix it? Some quick checks 
1. Restart the gdm service by following command
$sudo /etc/init.d/gdm restart

2. Start the x-server
$sudo startx

3. Even after this if you are not getting the GUI and or got the error message like "Input signal out or range" then you need to edit your xorg.conf file.  This file is at /etc/X11/xorg.conf

i  ) Open the /etc/X11/xorg.conf file in your favorite editor with root privilege
ii ) Go to the section "Screen"  -> "Display" -> "Modes" put only the value "1024x768" and remove the all other values.  (If you know the correct resolution of your monitor the adding it is not a problem.)
iii) save the changes then again start the x-server(as like in quick check 2)

Hope this will help you.
Note: This is worked out in EduBOSS-2.0 and works fine.  EduBOSS is a linux distro for the school, college students which is derived from BOSS GNU/Linux.