Re: /var/run disappear after reboot

2024-07-22 Thread coreyh
For coreyh, here is the link to Linux Filesystem Hierarchy, v3: . And here is Wikipedia's page digesting it: . The documents discuss where various bits should go, including 11

Re: /var/run disappear after reboot

2024-07-22 Thread Jeffrey Walton
On Mon, Jul 22, 2024 at 11:10 AM George at Clug wrote: > > On Monday, 22-07-2024 at 22:15 Henning Follmann wrote: > > > > > On Jul 22, 2024, at 08:08, cor...@free.fr wrote: > > > > > > I found that after I rebooted the system, the dir /var/run/*** > > > disappeared. > > > > Yes, > > /var/run > >

Re: /var/run disappear after reboot

2024-07-22 Thread Jeffrey Walton
On Mon, Jul 22, 2024 at 10:12 AM Charles Curley wrote: > > On Mon, 22 Jul 2024 20:07:38 +0800 > cor...@free.fr wrote: > > > I found that after I rebooted the system, the dir /var/run/*** > > disappeared. > > As others have pointed out, stuff in /var/run is supposed to disappear > on reboot. > > >

Re: /var/run disappear after reboot

2024-07-22 Thread Charles Curley
On Mon, 22 Jul 2024 20:07:38 +0800 cor...@free.fr wrote: > I found that after I rebooted the system, the dir /var/run/*** > disappeared. As others have pointed out, stuff in /var/run is supposed to disappear on reboot. > I put my app's web sessions under /var/run. so they got lost. > Is there a

Re: /var/run disappear after reboot

2024-07-22 Thread Nicolas George
George at Clug (12024-07-22): > Would it be appropriate to use the /opt directory? No. If it is VARiable, then it should go under /var. /var/lib/somehting is traditional, /var/opt/something is an option if you installed under /opt/something. Regards, -- Nicolas George

Re: /var/run disappear after reboot

2024-07-22 Thread George at Clug
On Monday, 22-07-2024 at 22:15 Henning Follmann wrote: > > > > On Jul 22, 2024, at 08:08, cor...@free.fr wrote: > > > > I found that after I rebooted the system, the dir /var/run/*** disappeared. > > > Yes, > /var/run > is a symlink to /run > And /run is a tmpfs > > > I put my app's web s

Re: /var/run disappear after reboot

2024-07-22 Thread Nicolas George
Greg Wooledge (12024-07-22): > The contents of /run (which /var/run points to) are temporary. And even before /var/run was a link to /run, it was meant to be cleaned at boot. Regards, -- Nicolas George

Re: /var/run disappear after reboot

2024-07-22 Thread Henning Follmann
> On Jul 22, 2024, at 08:08, cor...@free.fr wrote: > > I found that after I rebooted the system, the dir /var/run/*** disappeared. Yes, /var/run is a symlink to /run And /run is a tmpfs > I put my app's web sessions under /var/run. so they got lost. Well that was a bad idea if you wanted t

Re: /var/run disappear after reboot

2024-07-22 Thread Greg Wooledge
On Mon, Jul 22, 2024 at 20:07:38 +0800, cor...@free.fr wrote: > I found that after I rebooted the system, the dir /var/run/*** disappeared. > I put my app's web sessions under /var/run. so they got lost. > Is there an effective tool to manage /var/run dirs? hobbit:~$ ls -ld /var/run lrwxrwxrwx 1 r

/var/run disappear after reboot

2024-07-22 Thread coreyh
I found that after I rebooted the system, the dir /var/run/*** disappeared. I put my app's web sessions under /var/run. so they got lost. Is there an effective tool to manage /var/run dirs? Thank you -- corey hickman