UnixGeek wrote: » Have you considered using a better documented distro, at least while you're getting up to speed? I've never worked with SoL, so I'm not even sure that packaging system it uses, etc. CentOS, Debian and Ubuntu would all be excellent choices.
hermeszdata wrote: » I have not locked into this yet! I found some of my old DOCs and have the WebServer running! Right now, I am having issues navigating! It has been soo long since I have worked wiht this, I cannot remember some of the command switches i.e. dir switches to display contents one pange at a time. I have another program I want to install from CD, Webmin, and I am trying to get the drive mounted and be able to install the RPM. I used to do all this from comand line ... "Use it or Lose it!" I want to set up Webmin so I can take care of admin remotely. John
MentholMoose wrote: » Decide where to mount the CD, typically /mnt/cdrom. Create the directory if it doesn't exist: mkdir /mnt/cdrom Determine the CD drive device name. It could be /dev/cdrom, or maybe /dev/hdc. Mount it: mount -t iso9660 /dev/cdrom /mnt/cdrom Find the webmin rpm: find /mnt/cdrom -iname '*webmin*rpm' Or you can browse and view the cdrom contents with ls and cd. When you have the location, install it: rpm -ihv /mnt/cdrom/something/webmin.rpm
UnixGeek wrote: » You can also download, and install an updated version of webmin simultaneously. For example: rpm -ivh Download Webmin from SourceForge.net If ls generates too much output to fit on the screen, you can pipe it through less, so that you can scroll up and down, page up, page down, etc through the list. For example: ls -l | less When you're finished, hit the "q" key to exit less.
MentholMoose wrote: » I don't know if this work in his case. SoL 25 was released in 2007, so a recent webmin rpm might need some some newer dependencies. I've never used SoL so I don't know if there is an update manager like yum, or if it is still updated.