updates
parent
68c10a0bfa
commit
8c7fa04537
|
|
@ -6,7 +6,7 @@ apt-get dist-upgrade --yes
|
|||
# if kernel was upgraded, you may need to reboot
|
||||
apt-get install --yes --no-install-recommends mc squashfs-tools genisoimage zip unzip psmisc net-tools \
|
||||
alsa-utils man less xz-utils ca-certificates openssl acpid acpi-support-base powermgmt-base bzip2 gpart \
|
||||
hdparm sdparm mdadm smartmontools dosfstools lsof htop gddrescue rsync netcat ssh gpm wireless-tools ntfs-3g rfkill
|
||||
hdparm sdparm mdadm smartmontools dosfstools lsof htop gddrescue rsync netcat ssh gpm wireless-tools ntfs-3g rfkill file
|
||||
|
||||
ln -sf bash /bin/sh
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@ dpkg -x x11-xserver-utils*.deb /tmp/x11utils
|
|||
cd /tmp/x11utils
|
||||
cp -aR * /
|
||||
|
||||
update-alternatives --set x-terminal-emulator /usr/bin/xterm
|
||||
|
||||
. /tmp/cleanup
|
||||
|
||||
savechanges /02-xorg.sb
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
#!/bin/bash
|
||||
xhost + >/dev/null 2>/dev/null
|
||||
if [ "$EUID" -ne 0 ]; then
|
||||
chromium-launcher "$@"
|
||||
exit 0
|
||||
fi
|
||||
su -c "chromium-launcher "$@"" guest
|
||||
Loading…
Reference in New Issue