Wednesday, July 16th, 2008 10:21 PM
Show space used by deb packages installed sorted by size (ubuntu, debian and like)
dpkg-query -W -f='${Installed-Size;10}t${Package}n' | sort -k1,1n
No Comments »
Friday, June 6th, 2008 10:29 PM
You can install Rails in a Fedora system with these commands…
yum -y install ruby ruby-devel ruby-irb ruby-libs ruby-rdoc ruby-ri rubygems
sudo gem update
sudo gem install rails --include-dependencies
No Comments »
Saturday, May 3rd, 2008 11:15 PM
Show all deb packages installed on the system
dpkg -l
1 Comment »
Friday, March 28th, 2008 11:21 PM
If you are getting a ‘Can’t locate CPAN.pm in @INC’ error while opening cpan, you have not installed Bundle::Cpan. You can do that without Cpan - using yum
yum install perl-CPAN
No Comments »
Thursday, March 27th, 2008 11:27 PM
This will install an RPM, and try to resolve all the dependencies for you using your repositories.
yum localinstall package_name.rpm
No Comments »
Thursday, March 13th, 2008 11:20 PM
Install a rpm package
rpm -ivh package.rpm
No Comments »
Sunday, March 2nd, 2008 11:06 PM
Install a package using dpkg in Debian linux
dpkg -i package
No Comments »
Saturday, March 1st, 2008 01:53 AM
I usually install these packages after I install Debian/KDE in a Laptop.
apt-get install ...
kdebase k3b gcc
vlc xine-ui mplayer xmms amarok
bzip2 ark
build-essentials binutils util-linux module-init-tools xfsprogs pcmcia-cs procps oprofile
kde-guidance klaptopdaemon laptop-mode-tools
1 Comment »
Tuesday, February 26th, 2008 11:22 PM
Install / upgrade a deb package from cdrom/dvd
apt-cdrom install package_name
No Comments »
Tuesday, February 5th, 2008 10:41 PM
Show space used by rpm packages installed sorted by size (fedora, redhat and like)
rpm -q -a --qf "%10{SIZE}\t%{NAME}\n" | sort -k1,1n
No Comments »