good to see that LLS are alive

thanks!
BTW: did you implement any new features in these LLS which could be imported to Porteus?
(this thread is mainly about it)
After httpfs mounting it will be all *.xpm will be loaded to RAM - not only in porteus/base,modules,optional but all from drive /mnt/drive - which was provided by TFTP. If you have other catalogs with *.xzm it will be loaded also - and may cause to halt loading... mkdir -p /mnt/httpfs; httpfs http://$IP /mnt/httpfs
... mkdir -p /mnt/httpfs/porteus; httpfs http://$IP/porteus/base /mnt/httpfs/porteus
In simplest , for ex. if rootcopy is on FAT when cnanges do not using - what hapens with permissions /rootcopy files?this makes no sense to me: what if user wants to put sticky bit or suid in /rootcopy/sbin/some_utility?
i could do chmod 755 on rc.S, rc.M and rc.6 as they are essential to booting/shutdown but i still have some concerns: changing attributes on a files makes aufs save them in /mnt/live/memory/changes. i'm worrying that user who uses 'changes-time' script may have saved them in every module he creates. if he made some tweaks to rc.* then they will be distributed to other people.
same story with "save-changes" script.
Sure it is better - but in this case user have to know it - and that's more pitty - remember this.in my opinion it's better to create new xzm instead of using /rootcopy while using pxe-boot.
i know it's a longer way but for sure safer....
Code: Select all
noatime,users,suid,dev,exec
Code: Select all
noatime,nodiratime,suid,dev,exec
Code: Select all
Default mount options for all filesystems in Porteus are: "noatime,nodiratime,suid,dev,exec"
Use this cheatcode if you want to specify your own set. Each option must be separated with a comma "," no spaces are allowed between them.
Example:
mopt=realtime,sync,users,nosuid,noexec"
Code: Select all
mopt
... This cheatcode will allow you to customize your filesystem
mount options. By default, the mount options for all
filesystems in Porteus are: "noatime,nodiratime,suid,dev,exec".
Each option must be separated wtih a comma "," with no spaces
between any characters.
Example: 'mopt=realtime,sync,users,nosuid,noexec'
see 'man mount' for more information on specific mount options.