Skip to main content

Posts

Showing posts with the label command

:: How to enable Java on Google Chrome in Linux Debian

:: How to enable Java on Google Chrome + Installing Java on Linux Debian # aptitude install sun-java6-jre sun-java6-plugin + Create 'plugins' directory # mkdir /opt/google/chrome/plugins + Soft-link the plugins file # ln -s /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/libnpjp2.so /opt/google/chrome/plugins/ :: Links + Google + SuperUser

:: install thunderbird 3.1.10 on linux

:: download thunderbird 3.1.10 email client # wget http://mozilla.cdn.leaseweb.com/thunderbird/releases/3.1.10/linux-i686/en-US/thunderbird-3.1.10.tar.bz2 or you can download on thunderbird download page :: installing thunderbird from source on linux # tar -xjf thunderbird-3.1.10.tar.bz2 -C /usr/local/ :: open / running thunderbird 3.1.10 $ /usr/local/thunderbird/thunderbird :: add thunderbird shortcut on gnome-panel 0. right-click gnome panel and select Add to Panel.. 1. select Custom Application Launcher.. 2. add value on Add Louncher, like: Type: Aplication Name: thunderbird Command: /usr/local/thunderbird/thunderbird 3. click OK button :: links + google + thunderbird

:: setup qemu bridged networking on linux ubuntu

:: setup qemu bridged network + make / setup bridge on interface $ sudo vi /etc/network/interfaces # setup like : auto lo iface lo inet loopback auto br0 iface br0 inet static address 10.100.100.81 netmask 255.255.255.0 network 10.100.100.0 broadcast 10.100.100.255 gateway 10.100.100.1 bridge_ports eth0 bridge_fd 9 bridge_hello 2 bridge_maxage 12 bridge_stp off + restarting network interfaces $ sudo /etc/init.d/networking restart :: starting qemu add network options: -net nic,vlan=0 -net tap,vlan=0,ifname=tap0,script=/etc/qemu-ifup ex: $ sudo qemu -cdrom install-x86-minimal-20110111.iso -hda gentoo -net nic,vlan=0 -net tap,vlan=0,ifname=tap0,script=/etc/qemu-ifup :: link + googlelinux + iank

:: xen error: boot loader didn't return any data!

:: xen error Error: Kernel image does not exist: /tmp/vmlinuz.ePFTKG or Error: Boot loader didn't return any data! :: how to fix the error - edit file configure for xen domain $ cd /etc/xen/vm/ $ vi xendomain remove line: kernel="/tmp/vmlinux.blabla" add this line: bootloader="/usr/bin/pygrub" - re-create domain config file $ xm create /etc/xen/vm/xendomain - start xen domain if domain not starting $ xm start xendomain :: link + googlelinux + xensource