YUM is great. Here's the first time I used it to install a package needed by nessus:
YUM solves dependencies and everything (see gtk install lower half).
[root@localhost ~]# sh nessus-installer.sh
The script needs uudecode(1) to run properly
Install the package 'sharutils-*.rpm'
[root@localhost ~]# yum install sharutils
Setting up Install Process
Setting up Repo: base
repomd.xml 100% |=========================| 1.1 kB 00:00
Setting up Repo: updates-released
repomd.xml 100% |=========================| 951 B 00:00
Reading repository metadata in from local files
primary.xml.gz 100% |=========================| 797 kB 00:03
MD Read : ################################################## 2623/2623
base : ################################################## 2622/2622
primary.xml.gz 100% |=========================| 207 kB 00:10
MD Read : ################################################## 463/463
updates-re: ################################################## 463/463
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for sharutils to pack into transaction set.
sharutils-4.2.1-22.i386.r 100% |=========================| 7.3 kB 00:00
---> Package sharutils.i386 0:4.2.1-22 set to be installed
--> Running transaction check
Dependencies Resolved
Transaction Listing:
Install: sharutils.i386 0:4.2.1-22
Is this ok [y/N]: y
Downloading Packages:
sharutils-4.2.1-22.i386.r 100% |=========================| 93 kB 00:00
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing: sharutils 100 % done 1/1
Installed: sharutils.i386 0:4.2.1-22
Complete!
[root@localhost ~]#
[root@localhost ~]# yum install gtk+-devel
Setting up Install Process
Setting up Repo: base
http://ftp.uni-koeln.de/fedora/3/i386/os/repodata/repomd.xml: [Errno 4] IOError: HTTP Error 403: Forbidden
Trying other mirror.
repomd.xml 100% |=========================| 1.1 kB 00:00
Setting up Repo: updates-released
repomd.xml 100% |=========================| 951 B 00:00
Reading repository metadata in from local files
base : ################################################## 2622/2622
updates-re: ################################################## 463/463
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for gtk+-devel to pack into transaction set.
gtk+-devel-1.2.10-33.i386 100% |=========================| 40 kB 00:00
---> Package gtk+-devel.i386 1:1.2.10-33 set to be installed
--> Running transaction check
--> Processing Dependency: glib-devel for package: gtk+-devel
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for glib-devel to pack into transaction set.
glib-devel-1.2.10-15.i386 100% |=========================| 6.9 kB 00:00
---> Package glib-devel.i386 1:1.2.10-15 set to be installed
--> Running transaction check
Dependencies Resolved
Transaction Listing:
Install: gtk+-devel.i386 1:1.2.10-33
Performing the following to resolve dependencies:
Install: glib-devel.i386 1:1.2.10-15
Is this ok [y/N]: y
Downloading Packages:
gtk+-devel-1.2.10-33.i386 100% |=========================| 1.1 MB 00:03
glib-devel-1.2.10-15.i386 100% |=========================| 114 kB 00:00
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing: glib-devel 100 % done 1/2
Installing: gtk+-devel 100 % done 2/2
Installed: gtk+-devel.i386 1:1.2.10-33
Dependency Installed: glib-devel.i386 1:1.2.10-15
Complete!
[root@localhost ~]#
[UPDATED] Joomla 1.5 is acting flaky on one of our installations because the directories are set to ‘unwriteable’. To see the their current state, log in as Super Administrator and go to Help > System Info > Directory Permissions . Elsewhere, it's been suggested that the specified directories must be set to “world-writeable” (777). This works, but it is a very bad idea , since it means anyone can change your files! Not cool. Fixing Security with User and Group Settings To perform these changes, you need shell (command line) access to your server. If you don't have it, you can beg your host to make these changes for you, or switch to a Joomla-friendly host. I'm going to assume that you are using a LAMP (Linux/Apache/MySQL/PHP) server because if you're not, then ... well, these instructions should work in principle, but the specifics for your server may be quite different. Here's the issue: you, the FTP user, need full access to your files. So does Joomla,...
Comments