This is a discussion on Fedora / FreeBSD files question within the Linux Operating System forums, part of the Unix Operating Systems category; --> Hi, I am using a tutorial to setup apache on my fedora 5.0 server. The tutorial however is based ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, I am using a tutorial to setup apache on my fedora 5.0 server. The tutorial however is based on FreeBSD 5.1 I cant find the following files to cp though. cp /usr/libexec/ld-elf.so.1 /chroot/httpd/usr/libexec/ cp /var/run/ld-elf.so.hints /chroot/httpd/var/run/ cp /etc/master.passwd /chroot/httpd/etc/passwords Can anyone help ? Thanks, Wayne. |
| |||
| "Wayne" <wayne@somedomain.com> wrote in news:e7ej3n$fjs$1@ctb-nnrp2.saix.net: > Hi, > > I am using a tutorial to setup apache on my fedora 5.0 server. > The tutorial however is based on FreeBSD 5.1 > > I cant find the following files to cp though. > > cp /usr/libexec/ld-elf.so.1 /chroot/httpd/usr/libexec/ try /usr/lib/ld-elf.so.1 (why you're copying a library instead of making a symlink though I can't understand..) > cp /var/run/ld-elf.so.hints /chroot/httpd/var/run/ > cp /etc/master.passwd /chroot/httpd/etc/passwords try /etc/passwd although shadow passwords may interfere with that. > Can anyone help ? > > Thanks, > > Wayne. > > > -- (setq (chuck nil) car(chuck) ) |
| |||
| "Wayne" <wayne@somedomain.com> wrote in message news:e7ej3n$fjs$1@ctb-nnrp2.saix.net... > Hi, > > I am using a tutorial to setup apache on my fedora 5.0 server. > The tutorial however is based on FreeBSD 5.1 > > I cant find the following files to cp though. > > cp /usr/libexec/ld-elf.so.1 /chroot/httpd/usr/libexec/ > cp /var/run/ld-elf.so.hints /chroot/httpd/var/run/ > cp /etc/master.passwd /chroot/httpd/etc/passwords > > Can anyone help ? > > Thanks, > > Wayne. OK, first, FreeBSD 5.1 is fairly out of date: 6.1 is out and pretty stable. Second, the core libraries for your chroot cage are whatever the httpd and other binaries need: you can get a list of those by doing "ld `which httpd`", which reports the critical libraries. The /etc/master.passwd thing just looks weird. What is that under FreeBSD? |
| |||
| On Thu, 22 Jun 2006 19:07:40 +0200, Wayne <wayne@somedomain.com> wrote: > Hi, > > I am using a tutorial to setup apache on my fedora 5.0 server. > The tutorial however is based on FreeBSD 5.1 > > I cant find the following files to cp though. > > cp /usr/libexec/ld-elf.so.1 /chroot/httpd/usr/libexec/ > cp /var/run/ld-elf.so.hints /chroot/httpd/var/run/ > cp /etc/master.passwd /chroot/httpd/etc/passwords > > Can anyone help ? > Use a tutorial written for Linux. There should be one at tldp.org. |
| |||
| Hi Guys, Thanks for the help, its very appreciated. Also thanks for the link will check it out. Wayne. "Bill Marcum" <bmarcum@iglou.com> wrote in message news:se5sm3-e8u.ln1@don.localnet... > On Thu, 22 Jun 2006 19:07:40 +0200, Wayne > <wayne@somedomain.com> wrote: > > Hi, > > > > I am using a tutorial to setup apache on my fedora 5.0 server. > > The tutorial however is based on FreeBSD 5.1 > > > > I cant find the following files to cp though. > > > > cp /usr/libexec/ld-elf.so.1 /chroot/httpd/usr/libexec/ > > cp /var/run/ld-elf.so.hints /chroot/httpd/var/run/ > > cp /etc/master.passwd /chroot/httpd/etc/passwords > > > > Can anyone help ? > > > Use a tutorial written for Linux. There should be one at tldp.org. > > |
| ||||
| In comp.os.linux.setup Nico Kadel-Garcia <nkadel@comcast.net>: > "Wayne" <wayne@somedomain.com> wrote in message > news:e7ej3n$fjs$1@ctb-nnrp2.saix.net... >> Hi, >> >> I am using a tutorial to setup apache on my fedora 5.0 server. >> The tutorial however is based on FreeBSD 5.1 >> >> I cant find the following files to cp though. [..] >> cp /etc/master.passwd /chroot/httpd/etc/passwords [..] > The /etc/master.passwd thing just looks weird. What is that under FreeBSD? FYI. It is used in conjunction with /etc/spwd.db to store hashed passwords on *BSD, like /etc/shadow on Linux. Though the format is different. -- Michael Heiming (X-PGP-Sig > GPG-Key ID: EDD27B94) mail: echo zvpunry@urvzvat.qr | perl -pe 'y/a-z/n-za-m/' #bofh excuse 460: Here's a nickel, kid. Get yourself a better computer. |