March 13, 2009
The rm command by default does not prompt you before deleting files, most people prefer it this way, you can however have rm prompt you by using the i option. To avoid using the i option each time you delete a file make changes to the .bashrc file.
To have rm ask you:
rm: remove regular empty file `fine_name’?
each time, append the following line to you ~/.bashrc file:
alias rm=’rm -i’
Open up a terminal window(Applications>Accessories>terminal on Gnome) andtry deleting any file, from now on rm will check with you before deleting
Leave a Comment » |
Uncategorized |
Permalink
Posted by mybosslinuxblog
January 12, 2009
This post lists out the steps for reinstalling GRUB. You might have lost it by reinstalling Windows (Windows put its bootloader into MBR), or due to any other reason.
This is written for BOSS Linux and should work on most other distributions.
You’ll need to boot using the Live CD or DVD.
Once you are at the desktop open up the terminal (Applications>Accessories>Terminal)
In the terminal type: sudo grub
This will get you to a grub> prompt.
Now type find /boot/grub/stage1
This will return a location, on my system it returns (hd0,3), now based on this location type: root (hd0,3) remember to replace 0 and three with the information specific to your system.
Then type setup (hd0).
Note the space between root and (hd0,3), setup and (hd0). (thanks to tckb for pointing it out)
We’re done, now type exit and reboot. If all goes well you should be looking at the GRUB menu upon reboot.
1 Comment |
Uncategorized |
Permalink
Posted by mybosslinuxblog
September 12, 2008
You can now download BOSS Linux 3.0 from bosslinux.in, click here to go to to the main downloads page. or here to go directly to the BOSS Linux 3.0 Tejas iso download page.
Its a DVD image (2.59GB), they don’t have a CD image, but just about everyone has a DVD drive these days, so that should not be a problem. CD ISOs have been added, click here to view the related post. Besides, there are lots of packages that can now be a part of the standard install now that its a DVD image.
Tejas is an interesting name, DRDO’s LCA (Light Combat Aircraft) has also been named Tejas.
Leave a Comment » |
Uncategorized |
Permalink
Posted by mybosslinuxblog
September 5, 2008
BOSS Linux v 3.0 was released on September 4th at NIC in Delhi. Here are a few screenshots of the latest release of the BOSS Linux Operating System.
BOSS Linux v3.0 KDE Desktop Screenshot

BOSS Linux v3.0 KDE Desktop Screenshot
BOSS Linux Konqueror Web Browser

BOSS Linux Konqueror Web Browser
BOSS Linux v3.0 KDE Control Center

BOSS Linux v3.0 KDE Control Center
BOSS Linux Gnome Desktop – About Gnome

BOSS Linux v3 Gnome Desktop Screenshot
Leave a Comment » |
Uncategorized |
Permalink
Posted by mybosslinuxblog
August 15, 2008
The BOSS Linux team has started a brand new forum for users and developers at http://forums.bosslinux.in/
It has a fresh new interface, powered by phpBB. The old forum is still available under archives. Unlike the earlier setup where separate forums existed for developers and users, here both are combined under the same forum page as separate sub-sections.
Apart from the forum user can also get in touch with any of the support centres for BOSS Linux found here for support, theres also an irc-channel, for more details on it click here. You can also chat online with the BOSS Linux team members here.
The forums aren’t as active as those of some other distributions, but thats mostly because BOSS Linux is relatively new. You usually get responses within a day.
1 Comment |
Uncategorized |
Permalink
Posted by mybosslinuxblog
March 1, 2008
Find yourself a nice grub backgroung image, these are .xpm.gz image files.
You can look them up using your favorite search engine, or have a look here:
http://gnome-look.org/index.php?xcontentmode=160&PHPSESSID=743ed729a6ef2d810dbb041c06224112
or here:
http://www.queervisions.com/arch/2007/04/9_grub_splash_i.html
or here:
http://www.schultz-net.dk/grub.html
Now that you have the splash image, lets put it up there!
Backup /boot/grub/menu.lst
In menu.lst look for the section that lists out the Operating Systems, it’ll be something like:
## ## End Default Options ##
title BOSS GNU/Linux, kernel 2.6.21-1-486
root (hd1,7)
kernel /boot/vmlinuz-2.6.21-1-486 root=/dev/hdd8 splash=silent vga=791
initrd /boot/initrd.img-2.6.21-1-486
savedefault
(… continued)
You need to check the partition mentioned for root, in the above example it is (hd1,7), now paste the following text above ## ## End Default Options ##
splashimage=(hd1,7)/boot/grub/splash.xpm.gz
Remember to replace (hd1,7) with the right partition from your menu.lst file.Also remember to replace the filenme with the nme of your .xpm.gz file.
Now, reboot you should be able to see the new GRUB background image at work.
Leave a Comment » |
Uncategorized |
Permalink
Posted by mybosslinuxblog
February 8, 2008
Creating a shortcut to a folder
- Right Click on the Desktop
- Select Create Launcher
- Let the Type field be Application
- Type the name of the shortcut in the Name field
- in the Command field type: nautilus “path to folder in double quotes”
- you can select any icon you want by clicking the icon button.
- Click ok and you will now be see a shortcut to the folder on the desktop.
An alternate way to do this is to drag the folder with a middle or both button mouse click and drop it at the point where you want the shortcut to appear.
Leave a Comment » |
Uncategorized |
Permalink
Posted by mybosslinuxblog