Symlink for release

2012-03-08 Thread Axe Derby
Gooday. Is symlink "ftp://ftp.freebsd.org/pub/FreeBSD/releases/powerpc/powerpc/9.0-RELEASE/"; correct ? The "sysinstall" can't find 9.0-RELEASE. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/l

Bad symlink on ftp sites for 8.2 release

2011-02-26 Thread dieterbsd
There seems to be a bad symlink on the ftp sites for the 8.2 release: .../pub/FreeBSD/releases/amd64/8.2-RELEASE/packages -> ../../../ports/amd64/packages-8.2-release ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mail

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Chad Perrin
On Thu, Sep 09, 2010 at 08:23:09PM -0400, Garance A Drosehn wrote: > > It looks like my 'lndir' script started out as a copy of a > script named 'lndir.sh' that the XConsortium had in Oct 1988. [snip] > > Given that the port is written in C and much more recent, I > suspect it is the right way

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Garance A Drosehn
ln" which would remove the symlink and make a copy of the original file to replace it. lndir is in ports: > pkgsearch lndir /usr/ports/devel/lndir I'm not so sure about a "breakln" being anywhere accessible, other than whatever tools you have handy. I'

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Chad Perrin
On Thu, Sep 09, 2010 at 04:28:59PM -0400, Garance A Drosehn wrote: > > I believe early X11-distributions had a script called "lndir" > would pretty much do exactly what you want here. And then > there was a companion command called "breakln" which would > re

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Randal L. Schwartz
> "Randal" == Randal L Schwartz writes: Randal> I think null-mounts would do what you're trying to do... as in, as long Randal> as you're reading, you're reading from the old stuff, but if you ever Randal> write something new, all the right bits get created in the new dir. Randal> But I'm ne

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Randal L. Schwartz
>>>>> "Aryeh" == Aryeh Friedman writes: Aryeh> I want to make it so every file is a seperate symlink in dir2 if and Aryeh> only if it is a regular file (not a dir) in dir1... the reason is if Aryeh> the file is unchanged then use symlink but I can rm the symlin

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Garance A Drosehn
At 1:24 PM -0400 9/9/10, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: To show the

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Giorgos Keramidas
On Thu, 9 Sep 2010 13:24:50 -0400, Aryeh Friedman wrote: > I want to make it so every file is a seperate symlink in dir2 if and > only if it is a regular file (not a dir) in dir1... the reason is if > the file is unchanged then use symlink but I can rm the symlink and > replace i

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Aryeh Friedman
' | grep -v src/build | cut -f6- -d'/'` ) ln -s ~aegis/fnre/baseline/$i $i end On Thu, Sep 9, 2010 at 2:13 PM, Joshua Isom wrote: > On 9/9/2010 12:24 PM, Aryeh Friedman wrote: >> >> I want to make it so every file is a seperate symlink in dir2 if and >> only

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Joshua Isom
On 9/9/2010 12:24 PM, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: To show the

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Arthur Chance
On 09/09/10 18:50, Arthur Chance wrote: On 09/09/10 18:24, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Aryeh Friedman
Should of mentioned that I was using C as an example we are in fact using Java and the archives in question are jar's On Thu, Sep 9, 2010 at 1:50 PM, Arthur Chance wrote: > On 09/09/10 18:24, Aryeh Friedman wrote: >> >> I want to make it so every file is a seperate symlink in

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Arthur Chance
On 09/09/10 18:24, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: cpio -pdl

how to recursively symlink every file in a dir

2010-09-09 Thread Aryeh Friedman
I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: To show the problem I am attempting to solve: foo: (owned

Re: How to find what symlink points to?

2009-07-27 Thread Mel Flynn
On Monday 27 July 2009 20:54:51 Unga wrote: > Thanks everybody for valuable replies. In fact, I also used readlink(2) but > fed the symlink path directly from dirent, which was partial, readlink(2) > requires full path. Nope it doesn't. It's the classical "opendir

Re: How to find what symlink points to?

2009-07-27 Thread Unga
--- On Tue, 7/28/09, Mel Flynn wrote: > From: Mel Flynn > Subject: Re: How to find what symlink points to? > To: freebsd-questions@freebsd.org > Date: Tuesday, July 28, 2009, 1:25 AM > On Monday 27 July 2009 05:45:13 Unga > wrote: > > > > > Hi all >

Re: How to find what symlink points to?

2009-07-27 Thread Mel Flynn
On Monday 27 July 2009 05:45:13 Unga wrote: > > > Hi all > > > > > > I need to remove some unwanted symlinks on /dev using > > > > a C program. > > > > > The "struct dirent" only shows the symlink name, how > > > &

Re: How to find what symlink points to?

2009-07-27 Thread Andrew Gould
On Mon, Jul 27, 2009 at 8:45 AM, Unga wrote: > > --- On Mon, 7/27/09, Erik Trulsson wrote: > >> From: Erik Trulsson >> Subject: Re: How to find what symlink points to? >> To: "Unga" >> Cc: freebsd-questions@freebsd.org >> Date: Monday, July 2

Re: How to find what symlink points to?

2009-07-27 Thread Unga
--- On Mon, 7/27/09, Erik Trulsson wrote: > From: Erik Trulsson > Subject: Re: How to find what symlink points to? > To: "Unga" > Cc: freebsd-questions@freebsd.org > Date: Monday, July 27, 2009, 9:36 PM > On Mon, Jul 27, 2009 at 05:44:59AM > -0700, Unga wrote:

Re: How to find what symlink points to?

2009-07-27 Thread Erik Trulsson
On Mon, Jul 27, 2009 at 05:44:59AM -0700, Unga wrote: > > Hi all > > I need to remove some unwanted symlinks on /dev using a C program. > > The "struct dirent" only shows the symlink name, how do I find what that > symlink points to for verification purpose?

How to find what symlink points to?

2009-07-27 Thread Unga
Hi all I need to remove some unwanted symlinks on /dev using a C program. The "struct dirent" only shows the symlink name, how do I find what that symlink points to for verification purpose? Regards Unga ___ freebsd-questions@f

Re: How to symlink devfs devices?

2009-07-09 Thread Sagara Wijetunga
Paul B. Mahol writes: Is it possible to create a symlink to a device and use the symlink in place of the real device name in FreeBSD, especially in version 7.2? 1. A disk /dev/camera -> /dev/da0s1 devfs.conf(5) 2. A network device re0 -> lan0 same as above, but there is

Re: How to symlink devfs devices?

2009-07-08 Thread RW
On Wed, 8 Jul 2009 21:45:48 +0200 Roland Smith wrote: > On Wed, Jul 08, 2009 at 05:49:24PM +, Paul B. Mahol wrote: > > > > > > Is it possible to create a symlink to a device and use the > > > symlink in place of the real device name in FreeBSD, especially >

Re: How to symlink devfs devices?

2009-07-08 Thread Polytropon
On Wed, 08 Jul 2009 07:33:42 -0500, "Sagara Wijetunga" wrote: > Hi > > Is it possible to create a symlink to a device and use the symlink in place > of the real device name in FreeBSD, especially in version 7.2? > > 1. A disk >/dev/camera -> /dev/da0s1

Re: How to symlink devfs devices?

2009-07-08 Thread Roland Smith
On Wed, Jul 08, 2009 at 05:49:24PM +, Paul B. Mahol wrote: > > > > Is it possible to create a symlink to a device and use the symlink in place > > of the real device name in FreeBSD, especially in version 7.2? > > > > 1. A disk > >/dev/camera -> /de

Re: How to symlink devfs devices?

2009-07-08 Thread Paul B. Mahol
> > Is it possible to create a symlink to a device and use the symlink in place > of the real device name in FreeBSD, especially in version 7.2? > > 1. A disk >/dev/camera -> /dev/da0s1 devfs.conf(5) > > 2. A network device >re0 -> lan0 same as above, b

How to symlink devfs devices?

2009-07-08 Thread Sagara Wijetunga
Hi Is it possible to create a symlink to a device and use the symlink in place of the real device name in FreeBSD, especially in version 7.2? 1. A disk /dev/camera -> /dev/da0s1 2. A network device re0 -> lan0 Kind regards

Re: qmail.sh is broken symlink

2009-05-15 Thread Erik Trulsson
On Fri, May 15, 2009 at 06:29:27PM -0700, Kelly Jones wrote: > I just installed qmail on my FreeBSD box out of /usr/ports/mail/qmail, > and noticed this: > > # ls -l /usr/local/etc/rc.d/qmail.sh > lrwxr-xr-x 1 root wheel 13 May 15 18:43 /usr/local/etc/rc.d/qmail.sh@ -> > /va\ > r/qmail/rc > >

qmail.sh is broken symlink

2009-05-15 Thread Kelly Jones
I just installed qmail on my FreeBSD box out of /usr/ports/mail/qmail, and noticed this: # ls -l /usr/local/etc/rc.d/qmail.sh lrwxr-xr-x 1 root wheel 13 May 15 18:43 /usr/local/etc/rc.d/qmail.sh@ -> /va\ r/qmail/rc # ls -l /var/mail/rc ls: /var/mail/rc: No such file or directory I read somewh

Re: Tried to symlink /etc to another disk, now stuck

2008-06-13 Thread Glenn Gillis
Steve Bertrand wrote, On 6/12/2008 7:09 PM: Steve Bertrand wrote: Dan Nelson wrote: I'm off to try it. I've got a system here with a da device. I'll fsck up /etc/fstab, reboot, and report back with the appropriate mountroot> prompt entry... # cat /etc/fstab # DeviceMountpo

Re: Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Andrew Berry
Steve Bertrand wrote: If the disk type is known, it is as simple as typing the appropriate location of the root fs at that prompt and the system will come up. I don't remember about FreeBSD 4, but last time I dealt with a broken fstab on FreeBSD 6 I could just press tab to get a list of valid

Re: Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Steve Bertrand
To the OP...if you know what your disk type is, you CAN get it to continue to mount root at the mountroot prompt. Furthering that, you can also fsck and mount your other disk mountpoints in order to gain access to your editing binaries. I'm sorry to reply to my own posts, but I'd like to poin

Re: Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Steve Bertrand
Steve Bertrand wrote: Dan Nelson wrote: I'm off to try it. I've got a system here with a da device. I'll fsck up /etc/fstab, reboot, and report back with the appropriate mountroot> prompt entry... # cat /etc/fstab # DeviceMountpoint FStype Options Dump Pass#

Re: Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Steve Bertrand
Dan Nelson wrote: To make a long story shorter, is there any hope for getting a privileged user account on this machine to move /etc back to where it should be? It may be easiest to boot a live CD (FreeSBIE, or a FreeBSD-7 install disc 1 should work), mount both of your hard drives from it, an

Re: Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Dan Nelson
etc, then delete and symlink > the old location to the new: > > $ sudo cp -Rp /etc /new/etc > $ sudo rm -rd /etc/; sudo ln -s /new/etc /etc > > Of course, with the sudoers file in the original /etc directory, the > first "sudo" command to remove the /etc director

Re: Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Steve Bertrand
Glenn Gillis wrote: Now, I cannot log in as a privileged user to copy or move /new/etc back to /etc. (Because the password files were also in /etc.) I've tried booting into Single User mode with "boot -s" at the boot prompt, only to receive a "mountroot>" prompt wanting to know where to find the

Tried to symlink /etc to another disk, now stuck

2008-06-12 Thread Glenn Gillis
I think I did just about the worst thing I could do to my organization's FreeBSD-4.11 email server today: I was trying to free up space on the root disk and attempted to copy the /etc directory to another disk, /new/etc, then delete and symlink the old location to the new: $ sudo cp -Rp

Perl not creating symlink when installed from package

2008-05-15 Thread FreeBSD
Hi everyone, I have a problem with perl-5.8.8_1. When I install it from the ports (via make install clean or make package-recursive clean), it creates symlinks from /usr/local/bin/perl to /usr/bin/perl: [...] Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /us

Re: Changing "/var/mail" to a symlink

2007-12-16 Thread Tino Engel
V.I.Victor schrieb: Also, a suggestion was made off-list that "moving" /var/mail was better-done via mounting a nullfs. I'm reading up on that now. ndeed, moving the system maildir to another location using a configuration file or similar is obviously the better solution. ___

Re: Changing "/var/mail" to a symlink

2007-12-16 Thread V.I.Victor
>-Original Message- >From: Tino Engel [mailto:[EMAIL PROTECTED] >Sent: Saturday, December 15, 2007 12:58 PM >To: 'V.I.Victor' >Cc: freebsd-questions@freebsd.org >Subject: Re: Changing "/var/mail" to a symlink > >V.I.Victor schrieb: >> Beca

Re: Changing "/var/mail" to a symlink

2007-12-15 Thread Tino Engel
r /usr/var.mail cd /var cp -p mail/* /usr/var.mail/ mv mail mail.bak ln -s /usr/var.mail mail Since 'ls -l /var' shows: drwxrwxrwt 2 root mail 512 Dec 14 14:24 mail I should then: cd /usr chmod 1777 var.mail chown root:mail var.mail No changes are ma

Changing "/var/mail" to a symlink

2007-12-14 Thread V.I.Victor
/var cp -p mail/* /usr/var.mail/ mv mail mail.bak ln -s /usr/var.mail mail Since 'ls -l /var' shows: drwxrwxrwt 2 root mail 512 Dec 14 14:24 mail I should then: cd /usr chmod 1777 var.mail chown root:mail var.mail No changes are made to the "/v

Re: make a symlink to a webpage?

2007-07-16 Thread Norberto Meijome
On Mon, 16 Jul 2007 17:17:53 -0400 Schiz0 <[EMAIL PROTECTED]> wrote: > On 7/16/07, Steve Franks <[EMAIL PROTECTED]> wrote: > > I know this is browser-specific, so let's just say firefox - how do I > > make a link to a page that I can execute directly? This is not the > > type of thing that's eas

Re: make a symlink to a webpage?

2007-07-16 Thread jbarnet
Schiz0 wrote: On 7/16/07, Steve Franks <[EMAIL PROTECTED]> wrote: I know this is browser-specific, so let's just say firefox - how do I make a link to a page that I can execute directly? This is not the type of thing that's easy to google for. I tried copying some of the ".url" links from my

Re: make a symlink to a webpage?

2007-07-16 Thread Schiz0
On 7/16/07, Steve Franks <[EMAIL PROTECTED]> wrote: I know this is browser-specific, so let's just say firefox - how do I make a link to a page that I can execute directly? This is not the type of thing that's easy to google for. I tried copying some of the ".url" links from my win32 box and o

make a symlink to a webpage?

2007-07-16 Thread Steve Franks
I know this is browser-specific, so let's just say firefox - how do I make a link to a page that I can execute directly? This is not the type of thing that's easy to google for. I tried copying some of the ".url" links from my win32 box and opening them with firefox, but that was just wishful t

Re: rm -f doesn't delete symlink: Sollution

2006-12-18 Thread Garrett Cooper
t;>>> >>>>> Hi, >>>>> I am trying to upgrade to FreeBSD 6.1. But when I run installworld >>>>> it halts when trying to create a symlink: /sys. Just before the >>>>> error the script tries to delete the old symlink with: rm -f /sys. >

Re: rm -f doesn't delete symlink

2006-12-18 Thread Garrett Cooper
I am trying to upgrade to FreeBSD 6.1. But when I run installworld >>>>> it halts when trying to create a symlink: /sys. Just before the >>>>> error the script tries to delete the old symlink with: rm -f /sys. >>>>> But this doesn't delete the symlink

Re: rm -f doesn't delete symlink

2006-12-17 Thread Garrett Cooper
Jeppe Bundsgaard wrote: At 22:01 17-12-2006, you wrote: Jeppe Bundsgaard wrote: Hi, I am trying to upgrade to FreeBSD 6.1. But when I run installworld it halts when trying to create a symlink: /sys. Just before the error the script tries to delete the old symlink with: rm -f /sys. But this

Re: rm -f doesn't delete symlink

2006-12-17 Thread Garrett Cooper
Jeppe Bundsgaard wrote: Hi, I am trying to upgrade to FreeBSD 6.1. But when I run installworld it halts when trying to create a symlink: /sys. Just before the error the script tries to delete the old symlink with: rm -f /sys. But this doesn't delete the symlink. No flags are set on

rm -f doesn't delete symlink

2006-12-17 Thread Jeppe Bundsgaard
Hi, I am trying to upgrade to FreeBSD 6.1. But when I run installworld it halts when trying to create a symlink: /sys. Just before the error the script tries to delete the old symlink with: rm -f /sys. But this doesn't delete the symlink. No flags are set on /sys. Anybody got any idea

Re: SYMLINK

2006-12-01 Thread Aaron Holmes
Jean-Paul Natola wrote: Please excuse my ignorance but I believe my symlink is not working, how can I verify a symlink? And Yes I am a newbie in the BSD / open source world. Jean-Paul Natola Network Administrator Information Technology Family Care International 588 Broadway Suite 503

RE: SYMLINK

2006-12-01 Thread Jean-Paul Natola
You create this link (presuming all dirs exist). 'ln -s /some/other/dir/goodstuff /stuff' Then do 'cd /stuff' ...textfile You can use any text editor you like if vi is not to your taste (though you should at least learn how to use vi since it is so omnipresent in the UNIX world) > > A

Re: SYMLINK

2006-12-01 Thread Jerry McAllister
On Fri, Dec 01, 2006 at 09:35:23AM -0800, Chuck Swiger wrote: > On Dec 1, 2006, at 9:30 AM, Jean-Paul Natola wrote: > >Please excuse my ignorance but I believe my symlink is not working, > >how can I > >verify a symlink? > > Most people use "ls -l" to see

Re: SYMLINK

2006-12-01 Thread Jerry McAllister
On Fri, Dec 01, 2006 at 12:30:51PM -0500, Jean-Paul Natola wrote: > Please excuse my ignorance but I believe my symlink is not working, how can I > verify a symlink? Just use it and see what happens. If it is a symlink to a directory, then do a cd to it. If it is to a text file, do a

RE: SYMLINK

2006-12-01 Thread Jean-Paul Natola
Make sure that your exim data really resides in /usr/var2/exim. Afterwards, remove /var/spool/exim. The ln command won't remove any existing files and directories, but it doesn't complain in this case. And then you have to take care where you specify source and destination: The source is an existi

Re: SYMLINK

2006-12-01 Thread Christian Walther
On 01/12/06, Christian Walther <[EMAIL PROTECTED]> wrote: The ln command won't remove any existing files and directories, but it doesn't complain in this case. Forget it, of course it does complain... ___ freebsd-questions@freebsd.org mailing list http

Re: SYMLINK

2006-12-01 Thread Christian Walther
Make sure that your exim data really resides in /usr/var2/exim. Afterwards, remove /var/spool/exim. The ln command won't remove any existing files and directories, but it doesn't complain in this case. And then you have to take care where you specify source and destination: The source is an existi

Re: SYMLINK

2006-12-01 Thread Chuck Swiger
On Dec 1, 2006, at 10:38 AM, Jean-Paul Natola wrote: I wanted to have the /var/spool/exim/ subdirecotries (scan , input db, msglog) run in the /usr slice (as it has ample space) So I MOVED exim to /usr/var2 and ran ln -s /var/spool/exim /usr/var2/exim but I don't think that's right Yep. Yo

RE: SYMLINK

2006-12-01 Thread Jean-Paul Natola
Additionally, find can tell you if a symbolic link is broken: % ln -s ./linksource ./linkdest % file linkdest linkdest: broken symbolic link to `./linksource' (In this case "linksource simply doesn't exist...) Uh-oh too much data - not processing- Maybe if I explain what I was doing- My /var

Re: SYMLINK

2006-12-01 Thread Christian Walther
Additionally, find can tell you if a symbolic link is broken: % ln -s ./linksource ./linkdest % file linkdest linkdest: broken symbolic link to `./linksource' (In this case "linksource simply doesn't exist...) ___ freebsd-questions@freebsd.org mailing

Re: SYMLINK

2006-12-01 Thread Chuck Swiger
On Dec 1, 2006, at 9:30 AM, Jean-Paul Natola wrote: Please excuse my ignorance but I believe my symlink is not working, how can I verify a symlink? Most people use "ls -l" to see where the link is pointing; software generally uses lstat(2). And Yes I am a newbie in the BSD / o

SYMLINK

2006-12-01 Thread Jean-Paul Natola
Please excuse my ignorance but I believe my symlink is not working, how can I verify a symlink? And Yes I am a newbie in the BSD / open source world. Jean-Paul Natola Network Administrator Information Technology Family Care International 588 Broadway Suite 503 New York, NY 10012 Phone

Re: create/symlink failed, no inodes free

2006-01-18 Thread [EMAIL PROTECTED]
On 1/18/06, progerstis (sent by Nabble.com) <[EMAIL PROTECTED]> wrote: > > > The same error appeared frequently when I tried to install FreeBSD on an > 8.5GB partition. Apparently it was because the root partition was running > out of space. So instead of using the auto-option to divide up and crea

Re: create/symlink failed, no inodes free

2006-01-18 Thread progerstis (sent by Nabble.com)
8000MB and a swap partition that is ~500MB. -- View this message in context: http://www.nabble.com/create-symlink-failed%2C-no-inodes-free-t598801.html#a2450263 Sent from the freebsd-questions forum at Nabble.com. ___ freebsd-questions@freebsd.org

Re: /: create/symlink failed, no inodes free

2005-11-22 Thread Martin Zibert
On 11/22/05, Mark Tinguely <[EMAIL PROTECTED]> wrote: > > Here is what I do: > > Choose the Custom option (top menu) > Choose Partition > A Use Entire Disk > (if the Disk Geometry does not look correct, then you may have > BIOS geometry issues). Assuming the FreeBSD partition is 4/8 G, exit > Q > I

Re: /: create/symlink failed, no inodes free

2005-11-22 Thread Martin Zibert
ys there. could installer be broken? imho, someone else would have the same problem.. On 11/22/05, Giorgos Keramidas <[EMAIL PROTECTED]> wrote: > > On 2005-11-22 15:34, Martin Zibert <[EMAIL PROTECTED]> wrote: > > Greetings, > > > > today i was installing freebsd 6.0 a

Re: /: create/symlink failed, no inodes free

2005-11-22 Thread Giorgos Keramidas
On 2005-11-22 15:34, Martin Zibert <[EMAIL PROTECTED]> wrote: > Greetings, > > today i was installing freebsd 6.0 and got this error: /: create/symlink > failed, no inodes free > I used 2 disks (one 4GB and the other 8GB) but got the same error. > How can i fix this

Re: /: create/symlink failed, no inodes free

2005-11-22 Thread Martin Zibert
> today i was installing freebsd 6.0 and got this error: /: create/symlink > > failed, no inodes free > > I used 2 disks (one 4GB and the other 8GB) but got the same error. > > How can i fix this problem? The disks were formated through fbsd > sysinstall > >

Re: create/symlink failed, no inodes free

2005-11-22 Thread Martin Zibert
this happens during install.. it keeps installing although i get this errors. first errors came when /base was installing. suggestions? On 11/22/05, Derrick MacPherson <[EMAIL PROTECTED]> wrote: > > is there many files on the system? > ___ freebsd-quest

/: create/symlink failed, no inodes free

2005-11-22 Thread Martin Zibert
Greetings, today i was installing freebsd 6.0 and got this error: /: create/symlink failed, no inodes free I used 2 disks (one 4GB and the other 8GB) but got the same error. How can i fix this problem? The disks were formated through fbsd sysinstall at install. Thanks in advance, Martin

create/symlink failed, no inodes free

2005-11-22 Thread Martin Zibert
Greetings, today i was installing freebsd 6.0 and got this error: /: create/symlink failed, no inodes free I used 2 disks (one 4GB and the other 8GB) but got the same error. How can i fix this problem? The disks were formated through fbsd sysinstall at install. Thanks in advance, Martin

Re: Dynamic symlink?

2005-10-10 Thread Brian Candler
On Mon, Oct 10, 2005 at 01:39:58PM -0500, Dan Nelson wrote: > > Something which looks like a symlink with a dynamic target depending > > on the uid of the person who reads it is the sort of thing I'm > > looking for. > > You could probably use amd's hlfsd to

Re: Dynamic symlink?

2005-10-10 Thread Dan Nelson
want to have a free-for-all NFS mount for > /tmp) > > Something which looks like a symlink with a dynamic target depending > on the uid of the person who reads it is the sort of thing I'm > looking for. You could probably use amd's hlfsd to do this, or make sure that

Dynamic symlink?

2005-10-10 Thread Brian Candler
ike a symlink with a dynamic target depending on the uid of the person who reads it is the sort of thing I'm looking for. Thanks, Brian. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To u

Re: pam_rootok(8) + pam.d/sudo symlink to pam.d/su

2005-10-07 Thread Dag-Erling Smørgrav
"Brian A. Seklecki" <[EMAIL PROTECTED]> writes: > PAM doesn't cache authentication information does it? This > "use_first_pass" argument to modulesn't couldn't be getting in the way? use_first_pass means "use the password that was typed in previously", while try_first_pass means "try the password

Re: pam_rootok(8) + pam.d/sudo symlink to pam.d/su

2005-10-07 Thread Dag-Erling Smørgrav
"Brian A. Seklecki" <[EMAIL PROTECTED]> writes: > Is there any way to set PAM to trace/debug it's decision making > process? yes, but you need to recompile with PAM_DEBUG defined. DES -- Dag-Erling Smørgrav - [EMAIL PROTECTED] ___ freebsd-questions@fr

Re: pam_rootok(8) + pam.d/sudo symlink to pam.d/su

2005-10-07 Thread Brian A. Seklecki
ED]:~$ [EMAIL PROTECTED]:~$ su - Password: [EMAIL PROTECTED]:~# ^D [EMAIL PROTECTED]:~$ sudo bash [EMAIL PROTECTED]:~# ^D ...not good. Now, /usr/local/etc/pam.d/sudo is a symlink to /etc/pam.d/su /etc/pam.d/su is stock, which "includes" /etc/pam.d/system, which basically mirrors /etc/

Re: pam_rootok(8) + pam.d/sudo symlink to pam.d/su

2005-10-07 Thread Brian A. Seklecki
sudo-1.6.8.9 via Ports. Is there any way to set PAM to trace/debug it's decision making process? ~BAS On Fri, 7 Oct 2005, Dag-Erling Smørgrav wrote: "Brian A. Seklecki" <[EMAIL PROTECTED]> writes: However, when I do that, all wheel-group users are automatically passing auth requirements due

Re: pam_rootok(8) + pam.d/sudo symlink to pam.d/su

2005-10-07 Thread Dag-Erling Smørgrav
"Brian A. Seklecki" <[EMAIL PROTECTED]> writes: > However, when I do that, all wheel-group users are automatically > passing auth requirements due to: > > authsufficient pam_rootok.so no_warn > > ...which I assume is happening because sudo(8) is running SUID root? No, un

pam_rootok(8) + pam.d/sudo symlink to pam.d/su

2005-10-07 Thread Brian A. Seklecki
Every reference(1) to configuring PAM and sudo(8) (in my case, for LDAP), suggests just symlinking [/usr/local/]etc/pam.d/sudo to /etc/pam.d/su However, when I do that, all wheel-group users are automatically passing auth requirements due to: authsufficient pam_rootok.so

"pkg_info -W" useless for symlink-accessible command (was Re: how to find which port has a given executable)

2005-03-23 Thread Parv
in message <[EMAIL PROTECTED]>, wrote Michael C. Shultz thusly... > > pkg_info -W /usr/X11R6/bin/nedit > /usr/X11R6/bin/nedit was installed by package nedit-5.5 (I tried on 5.3-p5; used to have same issue on 4.6-4.11.) I always had problems w/ that as so far i tried only the file name, w/o the pa

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-03-01 Thread Loren M. Lang
On Mon, Feb 28, 2005 at 07:55:18AM -0500, Clay wrote: > I realized what the problem mostly likely was after submitting the question. > I do believe that the mount point where I am wanting to have rc.conf located > is not yet available when the file is read. Is there a way to have this FS > moun

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Joshua Tinnin
On Monday 28 February 2005 07:38 pm, "Clay" <[EMAIL PROTECTED]> wrote: > - Original Message - > From: Joshua Tinnin > Sent: Monday, February 28, 2005 10:34 PM > On Monday 28 February 2005 06:32 pm, "Clay" > <[EMAIL PROTECTED]> wrote: > > - Original Message - > > From: Joshua Tinnin

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Kris Kennaway
On Mon, Feb 28, 2005 at 10:38:38PM -0500, Clay wrote: > All, > > I changed fstab so that my data partition would supposely mount before root, How do you think fstab will be read to know to mount some other partition first, when root (where fstab lives) is not yet mounted? > moved/symlink'd rc.c

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Clay
s for the responses! -Clay . . . . . - Original Message - From: Joshua Tinnin To: freebsd-questions@freebsd.org ; Clay Sent: Monday, February 28, 2005 10:34 PM Subject: Re: Can "/etc/rc.conf" be replaced with a symlink? On Monday 28 February 2005 06:32 pm, "Clay"

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Kris Kennaway
On Mon, Feb 28, 2005 at 09:32:18PM -0500, Clay wrote: > I could and may eventually write a script. > > I am putting together a media server for hosting my CD's as MP3's. I am > wanting to move as many of system and app config files I change through this > process to a location on my "data" part

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Joshua Tinnin
On Monday 28 February 2005 06:32 pm, "Clay" <[EMAIL PROTECTED]> wrote: > - Original Message - > From: Joshua Tinnin > Sent: Monday, February 28, 2005 9:03 PM > On Monday 28 February 2005 04:55 am, "Clay" > <[EMAIL PROTECTED]> wrote: > > I realized what the problem mostly likely was after s

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Clay
them in the event that I rebuild the root partition. Thanks, -Clay . . . . . - Original Message - From: Joshua Tinnin To: freebsd-questions@freebsd.org ; Clay Sent: Monday, February 28, 2005 9:03 PM Subject: Re: Can "/etc/rc.conf" be replaced with a symlink? On Monday 28 Feb

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Joshua Tinnin
On Monday 28 February 2005 04:55 am, "Clay" <[EMAIL PROTECTED]> wrote: > I realized what the problem mostly likely was after submitting the > question. I do believe that the mount point where I am wanting to > have rc.conf located is not yet available when the file is read. Is > there a way to ha

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Clay
I realized what the problem mostly likely was after submitting the question. I do believe that the mount point where I am wanting to have rc.conf located is not yet available when the file is read. Is there a way to have this FS mounted prior to rc.conf being read? Could I maybe place this mou

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Giorgos Keramidas
and create symlinks for each. Doing this will allow me >> to more easily maintain and backup the files. >> >> dhclient is able to use dhclient.conf when symlink'd. Apache seems >> to also work when httpd.conf is symlink'd. >> >> Can "/etc/rc.conf&q

Re: Can "/etc/rc.conf" be replaced with a symlink?

2005-02-28 Thread Joshua Tinnin
will allow me to more > easily maintain and backup the files. > > dhclient is able to use dhclient.conf when symlink'd. Apache seems > to also work when httpd.conf is symlink'd. > > Can "/etc/rc.conf" be replaced with a symlink? I have done and the > file

Can "/etc/rc.conf" be replaced with a symlink?

2005-02-27 Thread Clay
symlink'd. Apache seems to also work when httpd.conf is symlink'd. Can "/etc/rc.conf" be replaced with a symlink? I have done and the file isn't being read/found. Moving the actual file back to /etc fixed the problem. Thanks, -Clay __

Re: symlink

2004-07-08 Thread Jerry McAllister
> > Hello; I'm new to this list. > > I've looked and still can't find the path to the command "symlink". It > has a man page, but I can't find it. Any suggestions? Oops, I think I just wrote link -s in the last message and it should be ln -s A

Re: symlink

2004-07-08 Thread Jerry McAllister
> > Hello; I'm new to this list. > > I've looked and still can't find the path to the command "symlink". It > has a man page, but I can't find it. Any suggestions? Probably what you are looking for is:a link -s as in: link -s file

Re: symlink

2004-07-08 Thread Bill Moran
Andrew Musselman <[EMAIL PROTECTED]> wrote: > Hello; I'm new to this list. > > I've looked and still can't find the path to the command "symlink". It > has a man page, but I can't find it. Any suggestions? As already described, symlink is for use

Re: symlink

2004-07-08 Thread Dan Nelson
In the last episode (Jul 08), Andrew Musselman said: > I've looked and still can't find the path to the command "symlink". > It has a man page, but I can't find it. Any suggestions? That manpage is for the C library function symlink(). The shell command is &q

Re: symlink

2004-07-08 Thread Jonathan Chen
On Thu, Jul 08, 2004 at 02:40:30PM -0700, Andrew Musselman wrote: > Hello; I'm new to this list. > > I've looked and still can't find the path to the command "symlink". It > has a man page, but I can't find it. Any suggestions? symlink has a ma

  1   2   >