tags: apache   archive   business   charity   climbing   comic   communication   database   email   exchange   family   fm2008   hack   hardware   humour   linux   liverpool   microsoft   money   mysql   network   oes   opensource   outlook   php   pictures   process   project   quote   real_life   review   rss   science   security   software   thought   tsm   updates   webdev   website   windows  

Linux for beginners - Part 4

Sun, 19 Aug 2007 04:58:43

Installing new software from the command line can be troublesome. With certain Linux distributions you get a tool called 'yum' preinstalled. YUM is an application deployment tool.

Lets look at installing tcpdump, a packet analysis tool using YUM.

'yum install tcpdump'
yum - the command
install - the function we are asking YUM to perform
tcpdump - the application

You can also use YUM to search for installed packages. If you're unsure of the yum package name, add a wildcard * - 'yum list tcp*'

[root@ryanpartington ~]# yum list tcp*
Loading "installonlyn" plugin
Setting up repositories
Reading repository metadata in from local files
Installed Packages
tcp_wrappers.i386 7.6-40.2.1 installed
tcpdump.i386 14:3.9.4-8.1 installed

Cheers
Ryan Partington