Posts Tagged With: install

Package Listing in Debian

Tagged with: , , , , , , , ,

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 »

Installing Rails

Tagged with: , , , , , , ,

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 »

Show all Installed Packages in Debian

Tagged with: , , , , ,

Show all deb packages installed on the system


dpkg -l
1 Comment »

Install CPAN in Fedora

Tagged with: , , , , , ,

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 »

yum localinstall

Tagged with: , , , , , ,

This will install an RPM, and try to resolve all the dependencies for you using your repositories.


yum localinstall package_name.rpm
No Comments »

Install RPM Package

Tagged with: , , , , , ,

Install a rpm package


rpm -ivh package.rpm
No Comments »

Install Package Debian(DPKG)

Tagged with: , , , , ,

Install a package using dpkg in Debian linux


dpkg -i package
No Comments »

Packages to Install in a Debian/KDE Laptop

Tagged with: , , , , , , , ,

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 »

Apt using CD/DVD

Tagged with: , , , , , , ,

Install / upgrade a deb package from cdrom/dvd


apt-cdrom install package_name
No Comments »

List all Installed RPMs by Size

Tagged with: , , , , , , ,

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 »