Txt

Byte sized tech know-how.

  • Home
  • About

Tag Archives: install

06 Jul

Install Package List

Install a list of packages from a text file.


cat packages.txt | xargs apt-get install
admin Posted in Command Line, Linux command, file, install, Linux, list, package, text Leave a comment
23 Mar

Installing GRUB Into MBR

Use this when your MBR gets corrupted – usually happens after you reinstall windows. Pop in a bootable ubuntu DVD and boot into it. Then open a terminal and type in the following commands…


$ sudo grub
> find /boot/grub/stage1
(hd0,1)
> root (hd0,1) #Must be same as the output of the last command
> setup (hd0)
admin Posted in Command Line, Linux grub, hd, hdd, install, Linux, mbr, root, windows 1 Comment
04 Nov

Update an Installed RPM Package

Upgrade a rpm package only if it is already installed


rpm -F package.rpm
admin Posted in Command Line, Linux command, install, Linux, package, rpm, update Leave a comment
18 Oct

RPM Installation without Dependencies

Install a rpm package ignoring dependencies requests


rpm -ivh --nodeeps package.rpm
admin Posted in Command Line, Linux dependencies, dependency, fedora, fille, install, rpm Leave a comment
16 Jul

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 
admin Posted in Command Line, Linux apt, command, deb, debian, dpkg, install, Linux, size, software Leave a comment
06 Jun

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 rubygems
sudo gem update
sudo gem install rails --include-dependencies
admin Posted in Command Line, Linux, Ruby command, fedora, gem, install, Linux, rails, Ruby, yum Leave a comment
03 May

Show all Installed Packages in Debian

Show all deb packages installed on the system


dpkg -l
admin Posted in Command Line, Linux deb, debian, dpkg, install, list, package 1 Comment
28 Mar

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 can do that without Cpan – using yum


yum install perl-CPAN
admin Posted in Command Line, Linux, Perl command, cpan, fedora, install, Linux, Perl, yum 2 Comments
27 Mar

yum localinstall

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


yum localinstall package_name.rpm
admin Posted in Command Line, Linux command, fedora, install, Linux, redhat, rpm, yum Leave a comment
13 Mar

Install RPM Package

Install a rpm package


rpm -ivh package.rpm
admin Posted in Command Line, Linux command, fedora, install, Linux, package, redhat, rpm Leave a comment

Post navigation

← Older posts

Categories

  • Code
  • Command Line
  • Configuration
  • CSS
  • HTML
  • internet
  • JavaScript
  • Linux
  • Mobile
  • Perl
  • PHP
  • Python
  • Ruby
  • Uncategorized

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Fruitful theme by fruitfulcode Powered by: WordPress
↑