2022-07-19 18:52:03 +00:00
|
|
|
#!/bin/sh
|
|
|
|
###
|
|
|
|
# Wrapper for running calamares on Peppermint live media
|
|
|
|
###
|
|
|
|
|
|
|
|
# Stale file left behind by live-build that messes with partitioning
|
|
|
|
sudo mv /etc/fstab /etc/fstab.orig.calamares
|
|
|
|
|
|
|
|
# Access control to run calamares as root for xwayland
|
|
|
|
xhost +si:localuser:root
|
2023-01-19 11:05:14 -01:00
|
|
|
pkexec calamares
|
|
|
|
#pkexec calamares --debug | sudo tee /var/log/Calamares-Install.log
|
2022-07-19 18:52:03 +00:00
|
|
|
xhost -si:localuser:root
|
|
|
|
|
|
|
|
# Restore stale fstab, for what it's worth
|
|
|
|
sudo mv /etc/fstab.orig.calamares /etc/fstab
|