* Added HW-Sensors alias and keyboard shortcut * Added new packages to packages.both (from 2016.06 archiso update) * Disabled gputests for i686 builds * Errors would cause an incomplete line to be left in the log causing a false-positive * HW-Diags will no longer upload results if the Ticket# starts with '0' * Added chmod flags to the rsync upload * Initial work to add custom-repos * Open GUI progs without entering a password (e.g. GParted) * The wallpaper should now be loaded from the UFD. * Still need to move scripts or add a "settings" file * mount-all-volumes now shows the mount-points while mounting (like running manually) * photorec-sort 7z archive testing is currently stalling, disabled for now
10 lines
235 B
Bash
10 lines
235 B
Bash
#!/bin/bash
|
|
#
|
|
## Mount all volumes read-only
|
|
|
|
echo "Mounting all volumes"
|
|
regex="/dev/((h|s)d[a-z]|md)[0-9]+"
|
|
for v in $(inxi -Do | grep -E "$regex" | sed -r "s#.*($regex).*#\1#" | sort); do
|
|
udevil mount -o ro $v
|
|
done
|
|
echo "Done."
|