In my BionicPup64, /run/ is a symlink to /tmp/
and /tmp/ is a symlink to a dir in the ram tmpfs.
Code: Select all
#
# ll /run
lrwxrwxrwx 1 3 Feb 25 2019 /run -> tmp
# ll /tmp
lrwxrwxrwx 1 21 Oct 2 14:42 /tmp -> /initrd/mnt/tmpfs/tmp
#
In my Pup, /run/ and /tmp/ do not have persistence.
Everything in /run/ and /tmp/ disappear when Puppy shuts down.
Most Linux distros will delete everything in /run/ and /tmp/ and /var/run/
because programs use those spaces for lock files and socket files,
which need to be deleted before the system starts up.
Otherwise, the system and programs won't know whether they are running or not, or their pids, and other necessary info.
Is there another way to link the installed folder of /run/libvirt to /var/run?
Create the symlink everytime Puppy starts.
For example, put the line
ln -s /run/TEST /var/run/TEST
in /etc/rc.d/rc.local
to create the symlink each time Puppy starts.