Posted on June 13, 2008 by linuxconfig
Sometimes you encounter situation when you need a perl module to support your program but perl module is not available from standard linux repositories. Installing perl module from source code is not always good idea so what would be the best is to create package for a particular module using dh-make-perl command. In my case [...]
Filed under: Administration, Debian, Linux, Perl, Ubuntu | Leave a Comment »
Posted on June 4, 2008 by linuxconfig
When documenting my server installation I needed to have a list of packages installed on my server. dpkg –get-selections is great help but it returns values/packages each on separate line including “installed” keyword. This command returns list of installed packages in the single block separated with single space:
dpkg –get-selections | awk ‘{ print $1; }’| [...]
Filed under: Administration, Commands, Debian, Linux, Ubuntu | Leave a Comment »
Posted on April 17, 2008 by linuxconfig
This is a know issue in Ubuntu Linux ( gutsy , hardy ) with nVidia MCP55 Ethernet card. This card uses forecedeth module. forecedeth module is loaded, network card seem to be up and running however it can not ping outside the box. Here is a quick fix for this problem, as a root [...]
Filed under: Administration, Linux, Networks, Ubuntu | Tagged: ethernet, forcedeth, gusty, hardy, Linux, MCP55, network, network card, nvidia, ping, problem, Ubuntu | Leave a Comment »
Posted on April 17, 2008 by linuxconfig
Here is a small howto print to a PDF file using KDE and firefox. First we need to install cups PDF support:
apt-get install cups-pdf
Then navigate you with mouse to:
KDE -> Control Center -> Select Peripherals -> Printers
From here we need to add new printer click on:
ADD -> Add Printer/Class ( do not select Add [...]
Filed under: Administration, Debian, KDE, Linux, Printing, Ubuntu | Tagged: access, browser, configure, cups, cups-pdf, file, firefox, Howto, KDE, Linux, pdf, Pdf to file, print, Printing, settings | Leave a Comment »
Posted on April 5, 2008 by linuxconfig
By default mp3 support is not enabled for amarok music player. In order to enable amarok mp3 codec support on ubuntu linux you need to install the following package:
apt-get install libxine1-ffmpeg
Once package and its prerequisites are installed may need to restart amarok.
Filed under: Administration, Fun and Linux, Linux, Ubuntu | Tagged: amarok, codec, enable, Linux, mp3, package, support, Ubuntu | 1 Comment »
Posted on March 27, 2008 by linuxconfig
Easiest way to convert virtual machine from vmware.vmdk to virtualbox.vdi is to use these two tools: qemu and vditool
Navigate to you vmware machine which you would like to convert. Then run following command:
qemu-img convert -f vmdk vmware.vmdk -O raw virtualbox.bin
then you need to download vditool from:
http://www.virtualbox.org/download/testcase/vditool
make vditool executable:
chmod +x vditool
Use vditool to convert virtual images:
./vditool [...]
Filed under: Administration, Debian, Fun and Linux, Linux, Ubuntu, vmware | Tagged: convert, Howto, images, innotek, machine, virtual, virtualbox, vmware | Leave a Comment »
Posted on March 27, 2008 by linuxconfig
I have recently run into a problem when I was trying to convert vmware virtual machine to virtualbox using vditool. Apparently having the latest software is not always good idea. vditool is complaining that it is missing libstdc++.so.5 library. I have only installed libstdc++.so.6 which is there by default. libstdc++.so.5 belongs to gcc-3.3-base compiler.
Here is [...]
Filed under: Administration, Debian, Linux, Ubuntu | Tagged: error, install, libraries, libstdc++.so., loading, shared, solution, vditool | Leave a Comment »
Posted on March 27, 2008 by linuxconfig
This is for those who are trying to install virtualbox via debian apt-get tool and are having this error message on the screen:
Reading package lists… Done
W: GPG error: http://www.virtualbox.org etch Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 390EC3FF927CCC73
W: You may want to run apt-get update to correct [...]
Filed under: Administration, Debian, Linux, Ubuntu | Tagged: apt-get, innotec asc, install, missing, public key, virtualbox | Leave a Comment »
Posted on December 20, 2007 by linuxconfig
Terminal bell setting for debian and ubuntu are located in /etc/inputrc . Use your favorite editor to open /etc/inputrc file and search for line:
# set bell-style none
change it to:
set bell-style none
Note: you need to exit current terminal to allow changes to take place!
Filed under: Administration, Debian, Linux, Ubuntu | Tagged: bell, Debian, disable, Linux, terminal, Ubuntu | Leave a Comment »
Posted on December 20, 2007 by linuxconfig
Creating virtual IP address is very easy task. All we need is root access to the ifconfig command. This commands will create virtual ip addresses on eth0-> eth0:0 and eth0:1 network interface:
ifconfig eth0:1 192.168.148.143
ifconfig eth0:2 192.168.148.144
Filed under: Administration, Debian, Fedora, Linux, Networks, Ubuntu | Tagged: ifconfig, ip address, multiple, virtual | Leave a Comment »