Changes in / [807b061:ce6d8f6]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter07/kernfs.xml

    r807b061 rce6d8f6  
    101101      <filename class="directory">/run/shm</filename>.
    102102      The /run tmpfs was mounted above so in this case only a
    103       directory needs to be created.</para>
     103      directory needs to be created with the correct permissions.</para>
    104104
    105105      <para>In other host systems <filename>/dev/shm</filename> is a mount point
     
    109109
    110110<screen><userinput>if [ -h $LFS/dev/shm ]; then
    111   mkdir -pv $LFS$(realpath /dev/shm)
     111  install -v -d -m 1777 $LFS$(realpath /dev/shm)
    112112else
    113113  mount -vt tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
  • chapter11/afterlfs.xml

    r807b061 rce6d8f6  
    131131mounttype run     tmpfs  run
    132132if [ -h $LFS/dev/shm ]; then
    133   mkdir -pv $LFS$(realpath /dev/shm)
     133  install -v -d -m 1777 $LFS$(realpath /dev/shm)
    134134else
    135135  mounttype dev/shm tmpfs tmpfs -o nosuid,nodev
Note: See TracChangeset for help on using the changeset viewer.