Tag: install
Install and Configure Docker
Install Docker on Ubuntu and Configure it to use a non-default directory.
Install Package List
Install a list of packages from a text file. cat packages.txt | xargs apt-get install
Installing GRUB Into MBR
Use this when your MBR gets corrupted – usually happens after you reinstall windows. Pop in a bootable ubuntu DVD…
Update an Installed RPM Package
Upgrade a rpm package only if it is already installed rpm -F package.rpm
RPM Installation without Dependencies
Install a rpm package ignoring dependencies requests rpm -ivh –nodeeps package.rpm
Package Listing in Debian
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
Installing Rails
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…
Show all Installed Packages in Debian
Show all deb packages installed on the system dpkg -l
Install CPAN in Fedora
If you are getting a ‘Can’t locate CPAN.pm in @INC’ error while opening cpan, you have not installed Bundle::Cpan. You…
yum localinstall
This will install an RPM, and try to resolve all the dependencies for you using your repositories. yum localinstall package_name.rpm
Recent Comments