2018-02-26 02:41:29 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
|
|
echo "This script must be run as root" 1>&2
|
2018-04-07 19:07:06 +02:00
|
|
|
sudo "$0" "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
|
2018-02-26 02:41:29 +01:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
echo "Als root Angemeldet"
|
|
|
|
#
|
|
|
|
|
|
|
|
VERSION_ID=$(cat /etc/os-release | grep "ID")
|
|
|
|
RCLOCAL='/etc/rc.local'
|
2018-05-05 00:41:23 +02:00
|
|
|
RCLOCALSHUTDOWN='/etc/rc.local.shutdown'
|
2018-02-26 02:41:29 +01:00
|
|
|
SYSCTL='/etc/sysctl.conf'
|
2018-06-04 01:31:33 +02:00
|
|
|
WEBADDRESS="ssh://git@192.168.178.21:30022/home/git/SpectreOS"
|
|
|
|
WEBADDRESS1="ssh://git@192.168.178.21:30022/home/git/shell-scripte"
|
2018-02-26 02:41:29 +01:00
|
|
|
SUDOERS="/etc/sudoers"
|
|
|
|
repo="SpectreOS"
|
|
|
|
repo1="shell-scripte"
|
|
|
|
version="$1"
|
|
|
|
username="$2"
|
|
|
|
userpass="$3"
|
2018-06-05 00:20:35 +02:00
|
|
|
skip="$4"
|
2018-02-26 02:41:29 +01:00
|
|
|
|
2018-04-08 20:07:02 +02:00
|
|
|
hostname="$(cat /etc/hostname)"
|
2018-04-20 23:03:47 +02:00
|
|
|
[[ -z "${version}" ]] && version="${hostname#*-}"
|
2018-02-26 02:41:29 +01:00
|
|
|
[[ -z "${username}" ]] && username="user1"
|
|
|
|
[[ -z "${userpass}" ]] && userpass="user1"
|
|
|
|
|
|
|
|
function gitclone() {
|
2018-03-10 22:17:49 +01:00
|
|
|
if [ -d "/opt/${repo}" ]; then
|
2018-02-26 02:41:29 +01:00
|
|
|
echo "${repo} existiert bereits!!!"
|
2018-03-10 22:13:56 +01:00
|
|
|
cd /opt/${repo}
|
|
|
|
git pull
|
|
|
|
else
|
2018-03-10 22:17:49 +01:00
|
|
|
git clone ${WEBADDRESS} /opt/${repo}
|
2018-02-26 02:41:29 +01:00
|
|
|
fi
|
2018-03-10 22:17:49 +01:00
|
|
|
if [ -d "/opt/${repo1}" ]; then
|
2018-02-26 02:41:29 +01:00
|
|
|
echo "${repo1} existiert bereits!!!"
|
2018-03-10 22:13:56 +01:00
|
|
|
cd /opt/${repo1}
|
|
|
|
git pull
|
|
|
|
else
|
2018-03-10 22:17:49 +01:00
|
|
|
git clone ${WEBADDRESS1} /opt/${repo1}
|
2018-02-26 02:41:29 +01:00
|
|
|
fi
|
|
|
|
cd /
|
|
|
|
}
|
|
|
|
|
2018-03-18 18:15:27 +01:00
|
|
|
|
|
|
|
function yaourtmanagerinstall() {
|
2018-03-18 18:18:51 +01:00
|
|
|
|
2018-03-18 18:38:59 +01:00
|
|
|
cd /home/"$username"/
|
|
|
|
pwd
|
|
|
|
su "$username" -c "curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz"
|
|
|
|
pwd
|
|
|
|
su "$username" -c "tar -xvzf package-query.tar.gz"
|
|
|
|
pwd
|
|
|
|
cd package-query
|
|
|
|
pwd
|
2018-03-18 18:41:14 +01:00
|
|
|
su "$username" -c "makepkg -si --skipchecksums --skippgpcheck --nocheck --noconfirm --install --needed"
|
|
|
|
pwd
|
|
|
|
cd ..
|
|
|
|
pwd
|
|
|
|
su "$username" -c "curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/yaourt.tar.gz"
|
|
|
|
pwd
|
|
|
|
su "$username" -c "tar -xvzf yaourt.tar.gz"
|
|
|
|
pwd
|
|
|
|
cd yaourt
|
|
|
|
pwd
|
|
|
|
su "$username" -c "makepkg -si --skipchecksums --skippgpcheck --nocheck --noconfirm --install --needed"
|
|
|
|
pwd
|
|
|
|
cd /
|
2018-03-18 18:15:27 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function pacaurmanagerinstall() {
|
|
|
|
|
2018-03-18 18:41:14 +01:00
|
|
|
cd /home/"$username"/
|
|
|
|
pwd
|
2018-03-18 18:55:46 +01:00
|
|
|
if [ -d /home/"$username"/cower ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /home/"$username"/cower
|
|
|
|
su "$username" -c "git pull"
|
|
|
|
cd ..
|
|
|
|
else
|
|
|
|
su "$username" -c "git clone https://aur.archlinux.org/cower.git"
|
|
|
|
fi
|
2018-03-18 18:41:14 +01:00
|
|
|
pwd
|
|
|
|
cd cower
|
|
|
|
pwd
|
|
|
|
su "$username" -c "makepkg -si --skipchecksums --skippgpcheck --nocheck --noconfirm --install --needed"
|
|
|
|
pwd
|
|
|
|
cd ..
|
|
|
|
pwd
|
2018-03-18 18:55:46 +01:00
|
|
|
if [ -d /home/"$username"/pacaur ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /home/"$username"/pacaur
|
|
|
|
su "$username" -c "git pull"
|
|
|
|
cd ..
|
|
|
|
else
|
|
|
|
su "$username" -c "git clone https://aur.archlinux.org/pacaur.git"
|
|
|
|
fi
|
2018-03-18 18:41:14 +01:00
|
|
|
pwd
|
|
|
|
cd pacaur
|
|
|
|
pwd
|
|
|
|
su "$username" -c "makepkg -si --skipchecksums --skippgpcheck --nocheck --noconfirm --install --needed"
|
|
|
|
pwd
|
|
|
|
cd /
|
2018-03-18 18:15:27 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-04-01 14:13:01 +02:00
|
|
|
function aurmanagerinstall() {
|
|
|
|
|
|
|
|
cd /home/"$username"/
|
|
|
|
pwd
|
|
|
|
if [ -d /home/"$username"/aurman ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /home/"$username"/aurman
|
|
|
|
su "$username" -c "git pull"
|
|
|
|
cd ..
|
|
|
|
else
|
|
|
|
su "$username" -c "git clone https://aur.archlinux.org/aurman.git"
|
|
|
|
fi
|
|
|
|
pwd
|
|
|
|
cd aurman
|
|
|
|
pwd
|
|
|
|
su "$username" -c "makepkg -si --skipchecksums --skippgpcheck --nocheck --noconfirm --install --needed"
|
|
|
|
pwd
|
|
|
|
cd /
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
function yaourtinstall() {
|
|
|
|
su "$username" -c "yaourt -S $1 --needed --noconfirm"
|
|
|
|
}
|
|
|
|
|
2018-04-01 14:13:01 +02:00
|
|
|
function aurinstall() {
|
|
|
|
su "$username" -c "aurman -S $1 --needed --noconfirm --noedit"
|
2018-03-18 18:15:27 +01:00
|
|
|
}
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
function standartinstallation() {
|
2018-02-27 23:03:01 +01:00
|
|
|
pacman -Syu $(cat /opt/${repo}/packages_${version}.txt) --needed --noconfirm
|
2018-02-26 02:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function ldconfigcache() {
|
|
|
|
rm /etc/ld.so.cache
|
|
|
|
ldconfig
|
|
|
|
}
|
|
|
|
|
2018-03-18 18:24:31 +01:00
|
|
|
function addusers() {
|
2018-02-26 02:41:29 +01:00
|
|
|
useradd -m -g users -G wheel,audio,video,sys,optical -s /bin/bash $username
|
|
|
|
passwd ${username} <<EOT
|
|
|
|
${userpass}
|
|
|
|
${userpass}
|
|
|
|
EOT
|
|
|
|
mkdir -p /home/"$username"/
|
|
|
|
userrechte
|
2018-05-27 02:51:22 +02:00
|
|
|
|
|
|
|
# sudoers/wheel
|
|
|
|
|
|
|
|
echo "Lege $SUDOERS neu an!!!"
|
|
|
|
|
|
|
|
echo "root ALL=(ALL) NOPASSWD: ALL" > $SUDOERS
|
|
|
|
|
|
|
|
echo "%wheel ALL=(ALL) NOPASSWD: ALL" >> $SUDOERS
|
|
|
|
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function copyconfig() {
|
2018-06-05 00:06:11 +02:00
|
|
|
if [ -d /home/"$username"/.config ]; then
|
|
|
|
rm -Rv /home/"$username"/.config
|
|
|
|
fi
|
2018-02-26 02:41:29 +01:00
|
|
|
cp -aRv /root/. /home/"$username"/
|
|
|
|
#links
|
|
|
|
links
|
|
|
|
userrechte
|
2018-03-28 07:33:47 +02:00
|
|
|
rootrechte
|
2018-02-26 02:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function userrechte() {
|
|
|
|
#user
|
|
|
|
chown -cR -v "$username":users /home/"$username"
|
|
|
|
chmod 750 -Rv /home/"$username"
|
|
|
|
#ssh
|
|
|
|
if [ -d /home/"$username"/.ssh ]; then
|
|
|
|
chmod 700 /home/"$username"/.ssh
|
|
|
|
fi
|
|
|
|
if [ -f /home/"$username"/.ssh/id_rsa ]; then
|
|
|
|
chmod 600 /home/"$username"/.ssh/id_rsa
|
|
|
|
fi
|
|
|
|
if [ -f /home/"$username"/.ssh/authorized_keys ]; then
|
|
|
|
chmod 600 /home/"$username"/.ssh/authorized_keys
|
|
|
|
fi
|
|
|
|
|
2018-03-28 07:33:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function rootrechte() {
|
2018-02-26 02:41:29 +01:00
|
|
|
#root
|
|
|
|
chmod 750 -Rv /root
|
|
|
|
#ssh-root
|
|
|
|
if [ -d /root/.ssh ]; then
|
|
|
|
chmod 700 /root/.ssh
|
|
|
|
fi
|
|
|
|
if [ -f /root/.ssh/id_rsa ]; then
|
|
|
|
chmod 600 /root/.ssh/id_rsa
|
|
|
|
fi
|
|
|
|
if [ -f /root/.ssh/authorized_key ]; then
|
|
|
|
chmod 600 /root/.ssh/authorized_keys
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function links() {
|
|
|
|
#
|
|
|
|
mkdir -p /home/"$username"/Schreibtisch/
|
|
|
|
if [ -f "/usr/share/applications/arch-install.desktop" ]; then
|
|
|
|
if [ -f "/home/"$username"/Schreibtisch/arch-install.desktop" ]; then
|
|
|
|
echo "datei existiert bereits!"
|
|
|
|
else
|
|
|
|
ln -s /usr/share/applications/arch-install.desktop /home/"$username"/Schreibtisch/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#chmod +x /home/"$username"/Schreibtisch/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
mkdir -p /root/Schreibtisch/
|
|
|
|
if [ -f "/usr/share/applications/arch-install.desktop" ]; then
|
|
|
|
if [ -f "/root/Schreibtisch/arch-install.desktop" ]; then
|
|
|
|
echo "datei existiert bereits!"
|
|
|
|
else
|
|
|
|
ln -s /usr/share/applications/arch-install.desktop /root/Schreibtisch/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#chmod +x /root/Schreibtisch/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
mkdir -p /home/"$username"/Desktop/
|
|
|
|
if [ -f "/usr/share/applications/arch-install.desktop" ]; then
|
|
|
|
if [ -f "/home/"$username"/Desktop/arch-install.desktop" ]; then
|
|
|
|
echo "datei existiert bereits!"
|
|
|
|
else
|
|
|
|
ln -s /usr/share/applications/arch-install.desktop /home/"$username"/Desktop/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#chmod +x /home/"$username"/Desktop/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
mkdir -p /root/Desktop/
|
|
|
|
if [ -f "/usr/share/applications/arch-install.desktop" ]; then
|
|
|
|
if [ -f "/root/Desktop/arch-install.desktop" ]; then
|
|
|
|
echo "datei existiert bereits!"
|
|
|
|
else
|
|
|
|
ln -s /usr/share/applications/arch-install.desktop /root/Desktop/arch-install.desktop
|
|
|
|
fi
|
|
|
|
#chmod +x /root/Desktop/arch-install.desktop
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function gnomeconfig() {
|
|
|
|
mkdir -p /root/.config/gtk-3.0/
|
|
|
|
echo "[Settings]" > /root/.config/gtk-3.0/settings.ini
|
|
|
|
echo "gtk-theme-name = Adwaita" >> /root/.config/gtk-3.0/settings.ini
|
|
|
|
echo "# next option is applicable only if selected theme supports it" >> /root/.config/gtk-3.0/settings.ini
|
|
|
|
echo "gtk-application-prefer-dark-theme = true" >> /root/.config/gtk-3.0/settings.ini
|
|
|
|
echo "# set font name and dimension" >> /root/.config/gtk-3.0/settings.ini
|
|
|
|
echo "gtk-font-name = Sans 10" >> /root/.config/gtk-3.0/settings.ini
|
|
|
|
|
2018-04-25 11:05:20 +02:00
|
|
|
gsettings set org.gnome.desktop.media-handling automount 'false'
|
|
|
|
gsettings set org.gnome.desktop.media-handling automount-open 'false'
|
2018-02-26 02:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ "$1" == "adduser" ]
|
|
|
|
then
|
2018-05-27 02:48:44 +02:00
|
|
|
username="$2"
|
|
|
|
userpass="$3"
|
2018-03-18 18:24:31 +01:00
|
|
|
addusers
|
2018-02-26 02:41:29 +01:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if cat /etc/passwd | grep ${username} > /dev/null; then
|
2018-03-18 18:38:59 +01:00
|
|
|
echo "${username} existiert bereits!!!"
|
2018-02-26 02:41:29 +01:00
|
|
|
else
|
2018-03-18 18:38:59 +01:00
|
|
|
addusers
|
2018-02-26 02:41:29 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$erstellen" == "exit" ]
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2018-04-08 19:00:20 +02:00
|
|
|
# grundinstallation
|
|
|
|
|
|
|
|
gitclone
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
# Your commands
|
|
|
|
|
|
|
|
# startup
|
2018-02-27 22:53:24 +01:00
|
|
|
cp /opt/${repo}/startup /usr/bin/
|
2018-02-26 02:41:29 +01:00
|
|
|
chmod 755 /usr/bin/startup
|
2018-02-27 22:53:24 +01:00
|
|
|
cp /opt/${repo}/startup.service /etc/systemd/system/
|
2018-02-26 02:41:29 +01:00
|
|
|
chmod 644 /etc/systemd/system/startup.service
|
|
|
|
systemctl enable startup.service
|
|
|
|
|
|
|
|
# pacman-config
|
|
|
|
if [ "${version}" == "libre" ]; then
|
2018-02-27 22:53:24 +01:00
|
|
|
cp /opt/${repo}/pacman.conf_libre /etc/pacman.conf
|
2018-05-02 21:19:28 +02:00
|
|
|
elif [ "${version}" == "manjaro" ]; then
|
|
|
|
cp /opt/${repo}/pacman.conf_manjaro /etc/pacman.conf
|
2018-06-04 21:35:02 +02:00
|
|
|
elif [ "${version}" == "pi" ]; then
|
|
|
|
cp /opt/${repo}/pacman.conf_pi /etc/pacman.conf
|
2018-02-26 02:41:29 +01:00
|
|
|
else
|
2018-02-27 22:53:24 +01:00
|
|
|
cp /opt/${repo}/pacman.conf /etc/pacman.conf
|
2018-02-26 02:41:29 +01:00
|
|
|
fi
|
|
|
|
|
2018-05-02 21:19:28 +02:00
|
|
|
# mirrorlist
|
|
|
|
cp /opt/${repo}/mirrorlist* /etc/pacman.d/
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
# new-config
|
|
|
|
if [ -d /home/"$username"/.config ]; then
|
|
|
|
rm -Rv /home/"$username"/.config
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d /root/.config ]; then
|
|
|
|
rm -Rv /root/.config
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f /var/lib/pacman/db.lck ];then
|
|
|
|
rm /var/lib/pacman/db.lck
|
|
|
|
fi
|
|
|
|
|
2018-04-08 19:27:24 +02:00
|
|
|
# vollinstallation
|
2018-04-25 11:19:45 +02:00
|
|
|
if [ "$version" != "lite" ]; then
|
2018-04-25 10:54:48 +02:00
|
|
|
standartinstallation
|
2018-04-08 19:27:24 +02:00
|
|
|
fi
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
echo "Packetliste2 Ende"
|
|
|
|
echo "Beginne mit dem Konfigurieren des Systems :D"
|
2018-04-07 20:24:24 +02:00
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
# set desktop
|
|
|
|
echo "set desktop"
|
|
|
|
#
|
2018-04-25 10:42:31 +02:00
|
|
|
if [ "$version" != "lite" ]; then
|
2018-04-25 10:54:48 +02:00
|
|
|
cp /opt/${repo}/xinitrc_${version}.txt /etc/X11/xinit/xinitrc
|
2018-04-25 10:40:51 +02:00
|
|
|
fi
|
2018-02-26 02:41:29 +01:00
|
|
|
#
|
|
|
|
echo "Systemsprache und dienste werden erstellt!"
|
|
|
|
|
|
|
|
mkdir -p /etc/X11/xorg.conf.d/
|
|
|
|
# localectl set-x11-keymap de pc105 nodeadkeys
|
|
|
|
echo "Section \"InputClass\"" > /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
echo " Identifier \"Keyboard0\"" >> /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
echo " MatchIsKeyboard \"yes\"" >> /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
echo " Option \"XkbLayout\" \"de\"" >> /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
echo " Option \"XkbModel\" \"pc105\"" >> /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
echo " Option \"XkbVariant\" \"nodeadkeys\"" >> /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
echo "EndSection" >> /etc/X11/xorg.conf.d/20-keyboard.conf
|
|
|
|
|
|
|
|
#xset m 2/1 0
|
|
|
|
echo "Section \"InputClass\"" > /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo " Identifier \"Mouse0\"" >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo " MatchIsPointer \"yes\"" >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo "# set the following to 1 1 0 respectively to disable acceleration." >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo " Option \"AccelerationNumerator\" \"2\"" >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo " Option \"AccelerationDenominator\" \"1\"" >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo " Option \"AccelerationThreshold\" \"4\"" >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
echo "EndSection" >> /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
|
|
|
|
|
|
|
|
# set system startup files
|
|
|
|
echo "System startup files"
|
|
|
|
|
|
|
|
start=getty
|
|
|
|
|
|
|
|
if [ "$start" == "getty" ]
|
|
|
|
then
|
|
|
|
|
|
|
|
echo "if [ \$(tty) = "/dev/tty1" ]; then" > /root/.bash_profile
|
|
|
|
echo "startx" >> /root/.bash_profile
|
|
|
|
echo "fi" >> /root/.bash_profile
|
|
|
|
#
|
|
|
|
echo "if [ \$(tty) = "/dev/tty1" ]; then" > /home/"$username"/.bash_profile
|
|
|
|
echo "startx" >> /home/"$username"/.bash_profile
|
|
|
|
echo "fi" >> /home/"$username"/.bash_profile
|
|
|
|
#
|
|
|
|
|
|
|
|
start=${username}
|
|
|
|
if [ "$start" == "root" ]
|
|
|
|
then
|
|
|
|
mkdir -p /etc/systemd/system/getty\@tty1.service.d
|
|
|
|
echo "[Service]" > /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
|
|
|
echo "ExecStart=" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
|
|
|
echo "ExecStart=-/sbin/agetty --noclear -a root %I 38400 linux" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
|
|
|
systemctl enable getty@tty1
|
|
|
|
else
|
|
|
|
mkdir -p /etc/systemd/system/getty\@tty1.service.d
|
|
|
|
echo "[Service]" > /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
|
|
|
echo "ExecStart=" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
|
|
|
echo "ExecStart=-/sbin/agetty --noclear -a "$username" %I 38400 linux" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
|
|
|
systemctl enable getty@tty1
|
|
|
|
fi
|
|
|
|
|
|
|
|
elif [ "$start" == "xdm" ]
|
|
|
|
then
|
|
|
|
systemctl enable xdm
|
|
|
|
elif [ "$start" == "lightdm" ]
|
|
|
|
then
|
|
|
|
systemctl enable lightdm.service
|
|
|
|
elif [ "$start" == "exit" ]
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
echo "Kein Start gewählt!!!"
|
|
|
|
fi
|
|
|
|
|
2018-04-25 10:54:48 +02:00
|
|
|
systemctl enable acpid
|
|
|
|
systemctl enable ntpd
|
|
|
|
systemctl enable avahi-daemon
|
|
|
|
systemctl enable org.cups.cupsd.service
|
|
|
|
systemctl enable sshd
|
|
|
|
systemctl enable cronie
|
|
|
|
systemctl enable systemd-timesyncd.service
|
|
|
|
echo "Bitte OpenVPN config in die /etc/openvpn/client/client.conf kopieren!!!"
|
|
|
|
if [ -f /lib/systemd/system/openvpn-client@client.service ]; then
|
|
|
|
echo "link vorhanden!"
|
|
|
|
else
|
|
|
|
ln /lib/systemd/system/openvpn-client@.service /lib/systemd/system/openvpn-client@client.service
|
|
|
|
fi
|
|
|
|
#Bei ausdokumentierung wird eine/die VPN automatisch aus der /etc/openvpn/client/client.conf gestartet!!!
|
|
|
|
#systemctl enable openvpn-client@client.service
|
|
|
|
systemctl enable fail2ban
|
|
|
|
systemctl disable dhcpcd
|
|
|
|
systemctl enable NetworkManager.service
|
2018-05-05 06:21:12 +02:00
|
|
|
systemctl enable bluetooth.service
|
2018-02-26 02:41:29 +01:00
|
|
|
|
|
|
|
# set systemconfiguration
|
|
|
|
echo "systemconfiguration"
|
|
|
|
#
|
|
|
|
echo "LANG=de_DE.UTF-8" > /etc/locale.conf
|
|
|
|
echo "LC_COLLATE=C" >> /etc/locale.conf
|
|
|
|
echo "LANGUAGE=de_DE" >> /etc/locale.conf
|
|
|
|
#
|
|
|
|
echo "KEYMAP=de-latin1" > /etc/vconsole.conf
|
|
|
|
echo "FONT=lat9w-16" >> /etc/vconsole.conf
|
|
|
|
#
|
|
|
|
echo "de_DE.UTF-8 UTF-8" > /etc/locale.gen
|
|
|
|
echo "de_DE ISO-8859-1" >> /etc/locale.gen
|
|
|
|
echo "de_DE@euro ISO-8859-15" >> /etc/locale.gen
|
|
|
|
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
|
|
|
#
|
|
|
|
locale-gen
|
|
|
|
#
|
|
|
|
rm /etc/localtime
|
|
|
|
ln -s /usr/share/zoneinfo/Europe/Berlin /etc/localtime
|
|
|
|
|
2018-04-25 10:54:48 +02:00
|
|
|
# iso_name
|
|
|
|
echo "${repo}-${version}" > /etc/hostname
|
|
|
|
|
|
|
|
# uefi-boot
|
|
|
|
cp /opt/${repo1}/uefi-boot.sh /usr/bin/uefi-boot
|
|
|
|
chmod 755 /usr/bin/uefi-boot
|
|
|
|
|
2018-05-12 07:11:57 +02:00
|
|
|
# youtube-dl
|
|
|
|
cp /opt/${repo1}/youtube-dl.sh /usr/bin/youtube-downloader
|
|
|
|
chmod 755 /usr/bin/youtube-downloader
|
|
|
|
|
|
|
|
# youtube
|
|
|
|
cp /opt/${repo1}/youtube.sh /usr/bin/youtube
|
|
|
|
chmod 755 /usr/bin/youtube
|
|
|
|
|
2018-04-25 10:54:48 +02:00
|
|
|
# write-partitions manager
|
|
|
|
cp /opt/${repo}/write_cowspace /usr/bin/write_cowspace
|
|
|
|
chmod 755 /usr/bin/write_cowspace
|
|
|
|
|
|
|
|
# installer-/usr/bin/
|
|
|
|
cp /opt/${repo}/arch-install /usr/bin/arch-install
|
|
|
|
chmod 755 /usr/bin/arch-install
|
|
|
|
|
|
|
|
# bash.bashrc
|
|
|
|
sed "s|%OS_NAME%|${repo}|g;" /opt/${repo}/bash.bashrc > /etc/bash.bashrc
|
|
|
|
cp /opt/${repo}/.bashrc /root/
|
|
|
|
|
|
|
|
# config.fish
|
|
|
|
mkdir -p /root/.config/fish/
|
|
|
|
cp /opt/${repo}/config.fish /root/.config/fish/config.fish
|
|
|
|
|
|
|
|
# btrfs-swapfile
|
|
|
|
cp /opt/${repo}/btrfs-swapon.service /etc/systemd/system/
|
|
|
|
cp /opt/${repo}/btrfs-swapon /usr/bin/
|
|
|
|
chmod 755 /usr/bin/btrfs-swapon
|
|
|
|
cp /opt/${repo}/btrfs-swapoff /usr/bin/
|
|
|
|
chmod 755 /usr/bin/btrfs-swapoff
|
|
|
|
|
|
|
|
# compress-script
|
|
|
|
cp /opt/${repo}/compress.sh /usr/bin/compress
|
|
|
|
chmod 755 /usr/bin/compress
|
|
|
|
|
|
|
|
# ssh
|
|
|
|
cp /opt/${repo}/sshd_config /etc/ssh/sshd_config
|
|
|
|
|
|
|
|
# .Xmodmap
|
|
|
|
cp /opt/${repo}/.Xmodmap /root/
|
|
|
|
|
|
|
|
# packages
|
|
|
|
cp /opt/${repo}/packages* /etc/
|
|
|
|
|
|
|
|
# snapshot.sh
|
|
|
|
cp /opt/${repo}/snapshot.sh /usr/bin/snapshot
|
|
|
|
chmod 755 /usr/bin/snapshot
|
|
|
|
|
|
|
|
# .xscreensaver
|
|
|
|
cp /opt/${repo}/.xscreensaver /root/
|
|
|
|
|
|
|
|
# hosts
|
|
|
|
cp /opt/${repo}/hosts /etc/
|
|
|
|
|
|
|
|
# update-script
|
|
|
|
cp /opt/${repo}/update.sh /usr/bin/update-script
|
|
|
|
chmod 755 /usr/bin/update-script
|
|
|
|
|
|
|
|
# Verzeichnise
|
|
|
|
mkdir -p /root/Downloads
|
|
|
|
mkdir -p /root/Dokumente
|
|
|
|
mkdir -p /root/Bilder
|
|
|
|
mkdir -p /root/Musik
|
|
|
|
mkdir -p /root/Videos
|
|
|
|
|
|
|
|
# addusers.sh
|
|
|
|
cp /opt/${repo}/addusers.sh /usr/bin/addusers
|
|
|
|
chmod 755 /usr/bin/addusers
|
|
|
|
|
|
|
|
# shell-fish
|
|
|
|
chsh -s /usr/bin/fish root
|
|
|
|
chsh -s /usr/bin/fish ${username}
|
|
|
|
|
|
|
|
# XDG standard
|
|
|
|
cp /opt/${repo}/mimeapps.list /etc/xdg/mimeapps.list
|
2018-02-26 02:41:29 +01:00
|
|
|
|
2018-05-16 17:28:11 +02:00
|
|
|
# x11vnc-pass (password)
|
|
|
|
|
|
|
|
cp /opt/${repo}/x11vnc.pass /etc/x11vnc.pass
|
|
|
|
|
2018-04-25 11:59:54 +02:00
|
|
|
# aurinstaller
|
|
|
|
cp /opt/${repo}/aurinstall.sh /usr/bin/aurinstaller
|
|
|
|
chmod +x /usr/bin/aurinstaller
|
2018-06-12 00:20:47 +02:00
|
|
|
cp /opt/${repo}/aurupdater.sh /usr/bin/aurupdater
|
|
|
|
chmod +x /usr/bin/aurupdater
|
2018-04-25 11:59:54 +02:00
|
|
|
|
2018-06-04 21:12:44 +02:00
|
|
|
if [ "$version" != "pi" ]; then
|
|
|
|
su "$username" -c "aurinstaller "https://aur.archlinux.org/plymouth.git""
|
|
|
|
su "$username" -c "aurinstaller "https://aur.archlinux.org/plymouth-theme-dark-arch.git""
|
|
|
|
plymouth-set-default-theme -R dark-arch
|
|
|
|
fi
|
2018-04-25 11:59:54 +02:00
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
# nano
|
|
|
|
echo "include "/usr/share/nano/*.nanorc"" > /etc/nanorc
|
|
|
|
|
|
|
|
# htop
|
|
|
|
echo "fields=0 48 17 18 38 39 40 2 46 47 49 1
|
|
|
|
sort_key=46
|
|
|
|
sort_direction=-1
|
|
|
|
hide_threads=0
|
|
|
|
hide_kernel_threads=1
|
|
|
|
hide_userland_threads=0
|
|
|
|
shadow_other_users=0
|
|
|
|
highlight_base_name=1
|
|
|
|
highlight_megabytes=1
|
|
|
|
highlight_threads=1
|
|
|
|
tree_view=1
|
|
|
|
header_margin=1
|
|
|
|
detailed_cpu_time=1
|
|
|
|
color_scheme=0
|
|
|
|
delay=15
|
|
|
|
left_meters=AllCPUs Memory Swap
|
|
|
|
left_meter_modes=1 1 1
|
|
|
|
right_meters=Tasks LoadAverage Uptime
|
|
|
|
right_meter_modes=2 2 2 " > /root/.htoprc
|
|
|
|
|
|
|
|
# ssh
|
|
|
|
|
|
|
|
mkdir -p /root/.ssh
|
|
|
|
echo "ServerAliveInterval 120" > ~/.ssh/config
|
|
|
|
echo "ServerAliveCountMax 15" >> ~/.ssh/config
|
|
|
|
|
|
|
|
# Install rc.local
|
|
|
|
echo "[Unit]
|
|
|
|
Description=/etc/rc.local compatibility
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=oneshot
|
|
|
|
ExecStart=/etc/rc.local
|
|
|
|
RemainAfterExit=yes
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target" > /etc/systemd/system/rc-local.service
|
2018-05-05 00:41:23 +02:00
|
|
|
touch $RCLOCAL
|
|
|
|
chmod +x $RCLOCAL
|
2018-02-26 02:41:29 +01:00
|
|
|
systemctl enable rc-local.service
|
|
|
|
if ! grep '#!' $RCLOCAL; then
|
|
|
|
echo "#!/bin/bash" > $RCLOCAL
|
|
|
|
fi
|
|
|
|
|
2018-05-05 00:20:09 +02:00
|
|
|
# Install rc.shutdown
|
|
|
|
|
2018-05-05 00:36:28 +02:00
|
|
|
echo "[Unit]
|
2018-05-05 01:20:42 +02:00
|
|
|
Description=/etc/rc.local.shutdown Compatibility
|
|
|
|
ConditionFileIsExecutable=/etc/rc.local.shutdown
|
|
|
|
DefaultDependencies=no
|
|
|
|
After=basic.target
|
|
|
|
Before=shutdown.target
|
2018-05-05 00:36:28 +02:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=oneshot
|
|
|
|
ExecStart=/etc/rc.local.shutdown
|
2018-05-05 01:20:42 +02:00
|
|
|
StandardInput=tty
|
2018-05-05 00:36:28 +02:00
|
|
|
RemainAfterExit=yes
|
|
|
|
|
|
|
|
[Install]
|
2018-05-05 01:20:42 +02:00
|
|
|
WantedBy=multi-user.target" > /etc/systemd/system/rc-local-shutdown.service
|
2018-05-05 00:41:23 +02:00
|
|
|
touch $RCLOCALSHUTDOWN
|
|
|
|
chmod +x $RCLOCALSHUTDOWN
|
2018-05-27 02:41:02 +02:00
|
|
|
systemctl enable rc-local-shutdown.service
|
2018-05-05 00:36:28 +02:00
|
|
|
if ! grep '#!' $RCLOCALSHUTDOWN; then
|
|
|
|
echo "#!/bin/bash" > $RCLOCALSHUTDOWN
|
|
|
|
fi
|
|
|
|
|
2018-05-11 12:00:19 +02:00
|
|
|
|
2018-05-27 02:41:02 +02:00
|
|
|
|
2018-06-05 00:20:35 +02:00
|
|
|
if [ "$version" != "lite" ] && [ "$skip" != "skip" ]; then
|
2018-04-25 11:15:02 +02:00
|
|
|
|
2018-04-25 11:59:54 +02:00
|
|
|
### custom-installer
|
2018-04-25 11:15:02 +02:00
|
|
|
|
2018-04-25 11:59:54 +02:00
|
|
|
## pip install beautysh
|
2018-04-25 11:15:02 +02:00
|
|
|
if [ -d /opt/beautysh ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /opt/beautysh
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
git clone https://github.com/bemeurer/beautysh /opt/beautysh
|
|
|
|
fi
|
|
|
|
cd /opt/beautysh
|
|
|
|
python ./setup.py install
|
|
|
|
if [ -f /usr/bin/beautysh ]; then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
else
|
|
|
|
ln -s /opt/beautysh/beautysh/beautysh.py /usr/bin/beautysh
|
|
|
|
fi
|
|
|
|
chmod +x /usr/bin/beautysh
|
|
|
|
cd /
|
|
|
|
|
|
|
|
pip install powerline-shell
|
|
|
|
|
2018-04-25 11:59:54 +02:00
|
|
|
## powerline-shell-fonts
|
2018-04-25 11:15:02 +02:00
|
|
|
if [ -d /opt/powerline-shell-fonts ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /opt/powerline-shell-fonts
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
git clone https://github.com/powerline/fonts.git /opt/powerline-shell-fonts
|
|
|
|
fi
|
|
|
|
cd /opt/powerline-shell-fonts
|
|
|
|
./install.sh
|
|
|
|
cd /
|
|
|
|
|
2018-04-25 11:59:54 +02:00
|
|
|
## uncrustify
|
2018-04-25 11:15:02 +02:00
|
|
|
if [ -d /opt/uncrustify ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /opt/uncrustify
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
git clone https://github.com/uncrustify/uncrustify.git /opt/uncrustify
|
|
|
|
fi
|
|
|
|
cd /opt/uncrustify
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
cmake --build .
|
|
|
|
if [ -f /usr/bin/uncrustify ]; then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
else
|
|
|
|
ln -s /opt/uncrustify/build/uncrustify /usr/bin/uncrustify
|
|
|
|
fi
|
|
|
|
chmod +x /usr/bin/uncrustify
|
|
|
|
cd /
|
|
|
|
|
2018-04-25 11:59:54 +02:00
|
|
|
## conky
|
2018-04-25 11:15:02 +02:00
|
|
|
if [ -d /opt/conky ];then
|
|
|
|
echo "Bereits vorhanden!!!"
|
|
|
|
cd /opt/conky
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
git clone https://github.com/brndnmtthws/conky.git /opt/conky
|
|
|
|
fi
|
|
|
|
cd /opt/conky
|
|
|
|
cp cmake/ConkyBuildOptions.cmake .
|
|
|
|
|
|
|
|
sed "s|option(BUILD_LUA_CAIRO \"Build cairo bindings for Lua\" false)|option(BUILD_LUA_CAIRO \"Build cairo bindings for Lua\" true)|g;
|
|
|
|
s|option(BUILD_LUA_IMLIB2 \"Build Imlib2 bindings for Lua\" false)|option(BUILD_LUA_IMLIB2 \"Build Imlib2 bindings for Lua\" true)|g;
|
|
|
|
s|option(BUILD_LUA_RSVG \"Build rsvg bindings for Lua\" false)|option(BUILD_LUA_RSVG \"Build rsvg bindings for Lua\" true)|g" ConkyBuildOptions.cmake > cmake/ConkyBuildOptions.cmake
|
|
|
|
|
|
|
|
if [ -d build ];then
|
|
|
|
rm -Rv build
|
|
|
|
fi
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
cd /
|
|
|
|
|
|
|
|
# x11vnc
|
|
|
|
if [ -f /usr/lib/systemd/system/x11vnc.service ]; then
|
|
|
|
rm /usr/lib/systemd/system/x11vnc.service
|
|
|
|
fi
|
|
|
|
if [ -f /etc/systemd/system/x11vnc.service ]; then
|
|
|
|
rm /etc/systemd/system/x11vnc.service
|
|
|
|
fi
|
|
|
|
cp /opt/${repo}/x11vnc.service /etc/systemd/system/x11vnc.service
|
|
|
|
chmod 644 /etc/systemd/system/x11vnc.service
|
|
|
|
systemctl enable x11vnc.service
|
|
|
|
|
|
|
|
# .Conky
|
|
|
|
tar -vxJf /opt/${repo}/.Conky.tar.xz -C /opt/
|
|
|
|
chmod 755 -Rv /opt/.Conky/
|
|
|
|
touch /root/notes.txt
|
|
|
|
|
|
|
|
# Vibrancy Colors
|
|
|
|
tar -vxJf /opt/${repo}/vibrancy-colors.tar.xz -C /usr/share/icons/
|
|
|
|
gtk-update-icon-cache /usr/share/icons/Vibrancy-Colors-Dark/
|
|
|
|
|
|
|
|
# santana
|
|
|
|
mkdir -p /usr/share/fonts/TTF/
|
|
|
|
tar -vxJf /opt/${repo}/santana.tar.xz -C /usr/share/fonts/TTF/
|
|
|
|
|
|
|
|
# installer
|
|
|
|
mkdir -p /usr/share/applications/
|
|
|
|
cp /opt/${repo}/arch-install.desktop /usr/share/applications/arch-install.desktop
|
|
|
|
|
|
|
|
# install-picture
|
|
|
|
mkdir -p /usr/share/pixmaps/
|
|
|
|
cp /opt/${repo}/install.png /usr/share/pixmaps/
|
|
|
|
|
|
|
|
# background
|
|
|
|
mkdir -p /usr/share/backgrounds/xfce/
|
|
|
|
cp /opt/${repo}/*.jpg /usr/share/backgrounds/xfce/
|
|
|
|
chmod 755 -Rv /usr/share/backgrounds/xfce/
|
|
|
|
|
2018-06-04 21:12:44 +02:00
|
|
|
if [ "$version" != "pi" ]; then
|
|
|
|
# zusatzsoftware
|
|
|
|
su "$username" -c "aurinstaller "https://aur.archlinux.org/google-chrome.git""
|
|
|
|
fi
|
2018-05-15 12:40:00 +02:00
|
|
|
|
|
|
|
# install-firacode
|
|
|
|
# In download.sh
|
|
|
|
for type in Bold Light Medium Regular Retina; do
|
|
|
|
wget -O /usr/share/fonts/TTF/FiraCode-${type}.ttf \
|
|
|
|
"https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-${type}.ttf?raw=true";
|
|
|
|
done
|
|
|
|
|
2018-05-04 22:04:58 +02:00
|
|
|
|
2018-04-25 11:15:02 +02:00
|
|
|
fi
|
|
|
|
|
2018-06-05 00:23:41 +02:00
|
|
|
# .config
|
|
|
|
if [ -d /root/.config ]; then
|
|
|
|
rm -Rv /root/.config
|
|
|
|
fi
|
|
|
|
mkdir -p /root/.config
|
|
|
|
tar -vxJf /opt/${repo}/.config.tar.xz -C /root/.config/
|
|
|
|
gnomeconfig
|
|
|
|
copyconfig
|
|
|
|
|
2018-05-04 22:53:19 +02:00
|
|
|
if pacman -Qdtq; then
|
|
|
|
echo "Verwaiste Packete werden entfernt :)"
|
|
|
|
pacman -Rsn $(pacman -Qdtq) --noconfirm
|
|
|
|
else
|
|
|
|
echo "Es müssen keine verwaisten Packete entfernt werden :)"
|
|
|
|
fi
|
2018-02-26 02:41:29 +01:00
|
|
|
pacman -Syu --needed --noconfirm
|
|
|
|
|
|
|
|
if [ "${version}" == "libre" ]; then
|
|
|
|
mkinitcpio -p linux-libre
|
|
|
|
else
|
2018-05-03 13:59:43 +02:00
|
|
|
mkinitcpio -P -c /etc/mkinitcpio.conf
|
2018-02-26 02:41:29 +01:00
|
|
|
fi
|
|
|
|
|
2018-06-04 23:33:36 +02:00
|
|
|
echo "Erstelle Packetverzeichnis!!!"
|
|
|
|
pacman -Qq > /pkglist.txt
|
|
|
|
|
|
|
|
echo "Aufräumen!!!"
|
|
|
|
sleep 5
|
|
|
|
pacman -Scc <<EOT
|
|
|
|
j
|
|
|
|
j
|
|
|
|
EOT
|
|
|
|
|
2018-02-26 02:41:29 +01:00
|
|
|
echo "Fertig!!!"
|
|
|
|
|
|
|
|
exit 0
|