Thursday, December 3, 2009
Monday, September 14, 2009
Emulate CrunchBang Linux in Linux Mint
I was amazed by the amount of resources used by crunchbang linux .It was so lite on resources wanted to try emulating the same on linux mint .I wanted to use resource/graphical intensive application via Linux Mint Gnome Session Mode and frequently used application such web browser wanted to access via openbox window manager . Since crunchbang linux is based on openbox window manager .
One of the secret crunchbang linux is using openbox window manager.
Below are steps to create open crunchbang like environment within linux mint.
Under Terminal window in linux mint first install the openbox window manager which can be done by
sudo apt-get install openbox obconf openbox-themes pypanel feh
We are also installing the other software such menu maker and obconf as well.
Let us install some software which are also low on resources by typing the following command
sudo apt-get install claws-mail liferea gpodder gftp transmission skype xchat gwibber pidgin gnome-nettool gimp inkscape gpicview gcolor2 agave gnome-specimen fontypython xsane scrot abiword gnumeric evince vlc rhythmbox audacity pitivi kino gtk-recordMyDesktop cheese sound-juicer soundconverter winff evince xchm xfburn osmo pcmanfm terminator xterm file-roller xpad gworldclock lxappearance
sudo apt-get install mc rtorrent mocp newsbeuter elinks mutt irssi naim htop
unzip the attached zip file
After unzipping the file you will need to copy all the files except crunchbang folder to home folder and /etc/skel/ .
copy all the files under crunchbang folder under /usr/bin/
after completing all the above operation . Restart the machine .
Logon to system under openbox session .
Enjoy crungbang linux under linux mint.
Sunday, September 13, 2009
Saturday, May 16, 2009
HOW TO MAKE HP DV9310US WIRELESS CARD WORK WITH UBUNTU 8.04
To install wireless driver
First install build essentials using sudo apt-get install build-essentials
Next install b43-fwcutter using sudo apt-get install b43-fwcutter.
Next download using the following command or manually download
wget http://downloads.openwrt.org/sources/broadcom-wl-4.80.53.0.tar.bz2Then do the following steps.
wget http://downloads.openwrt.org/sources/wl_apsta-3.130.20.0.o
cd
sudo b43-fwcutter -w /lib/firmware wl_apsta-3.130.20.0.o
tar xfvj broadcom-wl-4.150.10.5.tar.bz2
sudo b43-fwcutter --unsupported -w /lib/firmware broadcom-wl-4.150.10.5/driver/wl_apsta_mimo.o
sudo chmod o+rx /lib/firmware/b43 /lib/firmware/b43legacy
sudo ifconfig wlan0 up
sudo /etc/init.d/networking restart
In order to automate this process let us now create scripts for starting the wireless driver .
## These are scripts which go into init.d document for wireless connectivity, name this script as wirelessfix.sh
using vi wirelessfix.sh
copy the following content.
#!/bin/bash
modprobe b43
modprobe -r b43
modprobe -r b44
modprobe -r ssb
modprobe b44
modprobe -r b43
modprobe b43
Following commands will make sure the wireless shell script is started automatically by being a adding this as init activity
##List of commands to make the wirelessfix shell script part of init job
sudo chmod 755 wirelessfix.sh
update-rc.d wirelessfix.sh defaults
That's it your dv9310us is now wifi ready.
Friday, May 15, 2009
Restore ubuntu 9.10 Grub Bootloader after installing windows7
Yesterday, i tried to install windows7 over windows xp everything seemed to be perfect during the installation process .I had dual boot system with windows xp and ubuntu 9.10.This dual boot is guided by grub bootloader.After my windows 7 installation my grub boot loader was overwritten by the windows 7 boot loader.
I was presuming that i had lost ubuntu in the process.I had googled for on how to restore grub boot loader .Read some post on how to restore ubuntu grub boot loader. Finally restored the ubuntu grub boot loader.Here are some of the steps followed to restore grub boot loader.
- Restart you machine with ubuntu 9.10 live CD.
- After successfull logon to ubuntu live version open terminal window
- Type sudo grub on terminal console
- You will prompted grub prompt .
- Under grub prompt type find /boot/grub/stage1
- you will see hd0,1 or similar kind depending on where linux has been installed.Note this value as this will be used in the following command
- type root (hd0) .Note there is space between root and (hd0)
- type setup (hd0) ,this will mark MBR to point to linux partition.
- type quit
- Remove the live cd and restart the machine.
- Now you should see your famous grub loader loaded .
Powered by Qumana