Date: Sat, 1 Apr 2000 22:03:47 -0500 From: Ben Williams <williamsl@home.com> To: "Crist J. Clark" <cjclark@home.com> Cc: FreeBSD Questions <FreeBSD-Questions@FreeBSD.org> Subject: Re[2]: symlinking /var/mail to /usr/mail Message-ID: <3919.000401@home.com> In-Reply-To: <20000401124656.B28346@cc942873-a.ewndsr1.nj.home.com> References: <20000401124656.B28346@cc942873-a.ewndsr1.nj.home.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Quoting Crist J. Clark Saturday, April 01, 2000 CJC> On Sat, Apr 01, 2000 at 07:08:23AM -0600, Chris Byrnes wrote: >> I am running out of space on /var, so I'd like to remove /var/mail, >> create /usr/mail, and create a symlink so /var/mail forwards to >> /usr/mail. >> >> I know how to do that and stuff, but I'm not sure what permissions /usr/mail >> should have and who should own it. >> >> Advice? CJC> Well, I think giving /usr/mail the same permissions and ownership as CJC> /var/mail would be a pretty safe way to go. In my case I would, CJC> # mkdir /usr/mail CJC> # chown root.mail /usr/mail CJC> # chmod 775 /usr/mail CJC> # kill `head -1 /var/run/sendmail.pid` CJC> # tar cf - -C /var/mail . | tar xf - -C /usr/mail CJC> # mv /var/mail /var/mail.old # just to be safe CJC> # ln -s usr/mail /var/mail CJC> # /usr/sbin/sendmail -bd -q30m CJC> And I think that would do it. Remove /var/mail.old when you verify CJC> everything got copied and is working fine. Would it be better to change this somewhat: mkdir ch(own/mod) -- and now -stop- sendmail to avoid loosing data as tar runs -- --(will -HUP kill sendmail or cause it to re-read its config files?)-- mv ln -s /usr/mail /var/mail # watch that first / ;-) restart sendmail ? --Ben Williams mailto:received@email dot com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3919.000401>