.
This commit is contained in:
parent
651048a8cf
commit
53815af80c
1 changed files with 128 additions and 52 deletions
166
yggdrasil.sh
166
yggdrasil.sh
|
@ -679,6 +679,13 @@ function updateSystem () {
|
||||||
ret_code=$?
|
ret_code=$?
|
||||||
retCode $ret_code
|
retCode $ret_code
|
||||||
printf "\n"
|
printf "\n"
|
||||||
|
|
||||||
|
printf "[SNAP] refresh "
|
||||||
|
printf "\n[SNAP] refresh\n" &>> $logFile
|
||||||
|
sudo snap refresh &>> $logFile
|
||||||
|
ret_code=$?
|
||||||
|
retCode $ret_code
|
||||||
|
printf "\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -742,11 +749,24 @@ function addRepo () {
|
||||||
printf "\n"
|
printf "\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# install package manually
|
||||||
|
# input : url of package, package name
|
||||||
|
#
|
||||||
|
function installPackageDpkg () {
|
||||||
|
runCmd "cd /tmp"
|
||||||
|
printf "\n"
|
||||||
|
runCmd "wget -q -O $2 $1 && sudo dpkg -i $2 "
|
||||||
|
printf "\n"
|
||||||
|
runCmd "sudo apt-get install -fy"
|
||||||
|
printf "\n"
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# install package from repositories
|
# install package from repositories
|
||||||
# input : package manager, package name
|
# input : package manager, package name
|
||||||
# package manager available : apt, pip, npm, gem
|
# package manager available : apt, pip, npm, gem, snap
|
||||||
# TODO: add apm, snap, flatpak, umake
|
# TODO: add apm, flatpak, umake?
|
||||||
#
|
#
|
||||||
function installPackage () {
|
function installPackage () {
|
||||||
typeset pkg="$*"
|
typeset pkg="$*"
|
||||||
|
@ -804,6 +824,20 @@ function installPackage () {
|
||||||
installPackage apt "ruby-dev"
|
installPackage apt "ruby-dev"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
"snap")
|
||||||
|
if which snap >/dev/null; then
|
||||||
|
printf "[SNAP] Installing by $* "
|
||||||
|
printf "\n[SNAP] installing by $*\n" &>> $logFile
|
||||||
|
sudo snap install $* &>> $logFile
|
||||||
|
ret_code=$?
|
||||||
|
retCode $ret_code
|
||||||
|
printf "\n"
|
||||||
|
else
|
||||||
|
printf "[ERR] snap not found, installing...\n"
|
||||||
|
printf "\n[ERR] snap not found, installing...\n" &>> $logFile
|
||||||
|
installPackage apt "snapd"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -828,6 +862,9 @@ function checkAndInstallDep () {
|
||||||
"gem")
|
"gem")
|
||||||
installPackage gem $2
|
installPackage gem $2
|
||||||
;;
|
;;
|
||||||
|
"snap")
|
||||||
|
installPackage snap $2
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -909,48 +946,67 @@ function addRequiredPPA () {
|
||||||
addPPA "ppa:ansible/ansible" # ansiaddmsg "Adding Opera repository"
|
addPPA "ppa:ansible/ansible" # ansiaddmsg "Adding Opera repository"
|
||||||
|
|
||||||
addKey "http://deb.opera.com/archive.key"
|
addKey "http://deb.opera.com/archive.key"
|
||||||
addRepo opera.list "deb http://deb.opera.com/opera-stable/ stable non-free"
|
addRepo opera.list \
|
||||||
|
"deb http://deb.opera.com/opera-stable/ stable non-free"
|
||||||
|
|
||||||
addKey "https://dl.google.com/linux/linux_signing_key.pub"
|
addKey "https://dl.google.com/linux/linux_signing_key.pub"
|
||||||
addRepo google-chrome.list "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
|
addRepo google-chrome.list \
|
||||||
|
"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
|
||||||
|
|
||||||
addKey "https://d2t3ff60b2tol4.cloudfront.net/services@insynchq.com.gpg.key"
|
addKey "https://d2t3ff60b2tol4.cloudfront.net/services@insynchq.com.gpg.key"
|
||||||
addRepo insync.list "deb http://apt.insynchq.com/ubuntu xenial non-free contrib"
|
addRepo insync.list \
|
||||||
|
"deb http://apt.insynchq.com/ubuntu xenial non-free contrib"
|
||||||
|
|
||||||
addKey "hkp://p80.pool.sks-keyservers.net:80" "58118E89F3A912897C070ADBF76221572C52609D"
|
addKey "hkp://p80.pool.sks-keyservers.net:80" \
|
||||||
addRepo docker.list "deb https://apt.dockerproject.org/repo ubuntu-xenial main"
|
"58118E89F3A912897C070ADBF76221572C52609D"
|
||||||
|
addRepo docker.list \
|
||||||
|
"deb https://apt.dockerproject.org/repo ubuntu-xenial main"
|
||||||
|
|
||||||
addKey "https://syncthing.net/release-key.txt"
|
addKey "https://syncthing.net/release-key.txt"
|
||||||
addRepo syncthing.list "deb http://apt.syncthing.net/ syncthing release"
|
addRepo syncthing.list \
|
||||||
|
"deb http://apt.syncthing.net/ syncthing release"
|
||||||
|
|
||||||
addKey "http://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_16.04/Release.key"
|
addKey "http://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_16.04/Release.key"
|
||||||
addRepo owncloud-client.list "deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_16.04/ /"
|
addRepo owncloud-client.list \
|
||||||
|
"deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_16.04/ /"
|
||||||
|
|
||||||
addKey "https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt"
|
addKey "https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt"
|
||||||
addRepo mkv.list "deb http://mkvtoolnix.download/ubuntu/xenial/ ./" "deb-src http://mkvtoolnix.download/ubuntu/xenial/ ./ "
|
addRepo mkv.list \
|
||||||
|
"deb http://mkvtoolnix.download/ubuntu/xenial/ ./" \
|
||||||
|
"deb-src http://mkvtoolnix.download/ubuntu/xenial/ ./ "
|
||||||
|
|
||||||
addKey "https://jgeboski.github.io/obs.key"
|
addKey "https://jgeboski.github.io/obs.key"
|
||||||
addRepo jgeboski.list "deb http://download.opensuse.org/repositories/home:/jgeboski/xUbuntu_16.04/ ./"
|
addRepo jgeboski.list \
|
||||||
|
"deb http://download.opensuse.org/repositories/home:/jgeboski/xUbuntu_16.04/ ./"
|
||||||
|
|
||||||
addKey "hkp://keyserver.ubuntu.com:80" "BBEBDCB318AD50EC6865090613B00F1FD2C19886"
|
addKey "hkp://keyserver.ubuntu.com:80" \
|
||||||
addRepo spotify.list "deb http://repository.spotify.com stable non-free"
|
"BBEBDCB318AD50EC6865090613B00F1FD2C19886"
|
||||||
|
addRepo spotify.list \
|
||||||
|
"deb http://repository.spotify.com stable non-free"
|
||||||
|
|
||||||
addKey "http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc"
|
addKey "http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc"
|
||||||
addKey "http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc"
|
addKey "http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc"
|
||||||
addRepo virtualbox.list "deb http://download.virtualbox.org/virtualbox/debian xenial contrib"
|
addRepo virtualbox.list \
|
||||||
|
"deb http://download.virtualbox.org/virtualbox/debian xenial contrib"
|
||||||
|
|
||||||
addKey "http://archive.getdeb.net/getdeb-archive.key"
|
addKey "http://archive.getdeb.net/getdeb-archive.key"
|
||||||
addRepo getdeb.list "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps games"
|
addRepo getdeb.list \
|
||||||
|
"deb http://archive.getdeb.net/ubuntu xenial-getdeb apps games"
|
||||||
|
|
||||||
addKey "http://repo.vivaldi.com/stable/linux_signing_key.pub"
|
addKey "http://repo.vivaldi.com/stable/linux_signing_key.pub"
|
||||||
addKey "keyserver.ubuntu.com" "1397BC53640DB551"
|
addKey "keyserver.ubuntu.com" \
|
||||||
addRepo vivaldi.list "deb http://repo.vivaldi.com/stable/deb/ stable main "
|
"1397BC53640DB551"
|
||||||
|
addRepo vivaldi.list \
|
||||||
|
"deb http://repo.vivaldi.com/stable/deb/ stable main "
|
||||||
|
|
||||||
addKey "https://download.sublimetext.com/sublimehq-pub.gpg"
|
addKey "https://download.sublimetext.com/sublimehq-pub.gpg"
|
||||||
addRepo sublime-text.list "deb https://download.sublimetext.com/ apt/dev/"
|
addRepo sublime-text.list \
|
||||||
|
"deb https://download.sublimetext.com/ apt/dev/"
|
||||||
|
|
||||||
addKey "hkp://pgp.mit.edu:80" "379CE192D401AB61"
|
addKey "hkp://pgp.mit.edu:80" \
|
||||||
addRepo etcher.list "deb https://dl.bintray.com/resin-io/debian stable etcher"
|
"379CE192D401AB61"
|
||||||
|
addRepo etcher.list \
|
||||||
|
"deb https://dl.bintray.com/resin-io/debian stable etcher"
|
||||||
|
|
||||||
updateSystem
|
updateSystem
|
||||||
}
|
}
|
||||||
|
@ -1972,16 +2028,21 @@ function installCADMenu () {
|
||||||
installAppsFromListMenu cad
|
installAppsFromListMenu cad
|
||||||
}
|
}
|
||||||
|
|
||||||
#TODO:
|
#
|
||||||
function installTeamViewer12 () {
|
# install Teamviewer 13 (headless)
|
||||||
cd /tmp
|
#
|
||||||
|
function installTeamViewer13 () {
|
||||||
|
msg "Install Teamviewer 13"
|
||||||
|
installPackageDpkg https://download.teamviewer.com/download/linux/teamviewer_amd64.deb \
|
||||||
|
teamviewer12.deb
|
||||||
|
}
|
||||||
|
|
||||||
msg "Downloading Teamviewer 12"
|
#
|
||||||
wget -O teamviewer12.deb https://download.teamviewer.com/download/teamviewer_i386.deb
|
# install Teamviewer 13 (Menu)
|
||||||
|
#
|
||||||
msg "Installing Teamviewer 12"
|
function installTeamViewer13 () {
|
||||||
sudo dpkg -i teamviewer12.deb
|
installPackageDpkg https://download.teamviewer.com/download/linux/teamviewer_amd64.deb \
|
||||||
sudo apt-get install -fy
|
teamviewer12.deb
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -2007,8 +2068,7 @@ function enableUFW () {
|
||||||
runCmd "sudo ufw enable"
|
runCmd "sudo ufw enable"
|
||||||
|
|
||||||
if which syncthing >/dev/null; then
|
if which syncthing >/dev/null; then
|
||||||
msg "UFW Rules added for Syncthing"
|
runCmd "sudo ufw allow syncthing"
|
||||||
sudo ufw allow syncthing
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2034,25 +2094,36 @@ function enableNumLockX () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#TODO:
|
#
|
||||||
|
# /tmp in RAM by modifying /etc/fstab
|
||||||
|
#
|
||||||
function enableTmpRAM () {
|
function enableTmpRAM () {
|
||||||
msg "Enable /tmp in RAM by modifying /etc/fstab"
|
msg "Enable /tmp in RAM by modifying /etc/fstab"
|
||||||
sudo sh -c "echo 'tmpfs /tmp tmpfs defaults,size=2g 0 0' >> /etc/fstab"
|
runCmd "echo 'tmpfs /tmp tmpfs defaults,size=2g 0 0' | sudo tee -a /etc/fstab"
|
||||||
msg "Reboot required"
|
printf "[INFO] Reboot required"
|
||||||
}
|
}
|
||||||
|
|
||||||
#TODO:
|
#
|
||||||
|
# add screenfetch exec in .bashrc
|
||||||
|
#
|
||||||
function addScreenfetchBashrc () {
|
function addScreenfetchBashrc () {
|
||||||
msg "Adding screenfetch to .bashrc"
|
msg "Adding screenfetch to .bashrc"
|
||||||
checkAndInstallDep apt screenfetch
|
checkAndInstallDep apt screenfetch
|
||||||
touch /home/$myHomedir/.bashrc
|
runCmd "touch /home/$myHomedir/.bashrc"
|
||||||
echo "screenfetch -t" >> /home/"$myHomedir"/.bashrc
|
printf "\n"
|
||||||
|
runCmd "echo 'screenfetch -t' | tee -a /home/$myHomedir/.bashrc"
|
||||||
|
printf "\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
#TODO:
|
#
|
||||||
|
# cli history cmd timestamp enable
|
||||||
|
#
|
||||||
function enableHistoryTS () {
|
function enableHistoryTS () {
|
||||||
msg "CLI History TimeStamp Activation"
|
typeset ret_code
|
||||||
echo "export HISTTIMEFORMAT='%F %T '" >> /home/"$myHomedir"/.bashrc
|
printf "CLI History TimeStamp enabling "
|
||||||
|
echo "export HISTTIMEFORMAT='%F %T '" | tee -a /home/$myHomedir/.bashrc &>> $logFile
|
||||||
|
ret_code=$?
|
||||||
|
retCode $ret_code
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -2086,20 +2157,25 @@ function toolPacketLoss () {
|
||||||
ping -q -c 10 google.com
|
ping -q -c 10 google.com
|
||||||
}
|
}
|
||||||
|
|
||||||
#TODO:
|
#
|
||||||
|
# Optimization of SQLite databases of Firefox and Firefox Nightly
|
||||||
|
#
|
||||||
function toolOptimizeFirefox () {
|
function toolOptimizeFirefox () {
|
||||||
msg "Firefox SQLite databases optimization"
|
if (whiptail --title "Firefox SQLite DB Optimization" --yesno "Terminate Firefox and proceed ?" 10 60) then
|
||||||
pressKey "Please close Firefox BEFORE to proceed, which will be killed just after"
|
|
||||||
if which firefox >/dev/null; then
|
if which firefox >/dev/null; then
|
||||||
smsgn "Optimizing Firefox"
|
printf "Optimizing Firefox"
|
||||||
pkill -9 firefox
|
pkill -9 firefox
|
||||||
for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f 'VACUUM; REINDEX;'; done
|
for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f 'VACUUM; REINDEX;'; done
|
||||||
fi
|
fi
|
||||||
if which firefox-trunk >/dev/null; then
|
if which firefox-trunk >/dev/null; then
|
||||||
smsgn "Optimizing Firefox Nightly"
|
printf "Optimizing Firefox Nightly"
|
||||||
pkill -9 firefox-trunk
|
pkill -9 firefox-trunk
|
||||||
for f in ~/.mozilla/firefox-trunk/*/*.sqlite; do sqlite3 $f 'VACUUM; REINDEX;'; done
|
for f in ~/.mozilla/firefox-trunk/*/*.sqlite; do sqlite3 $f 'VACUUM; REINDEX;'; done
|
||||||
fi
|
fi
|
||||||
|
if (whiptail --title "Firefox SQLite DB Optimization - Reboot" --yesno "Reboot required, proceed now ?" 10 60) then
|
||||||
|
sudo reboot
|
||||||
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue