mirror of
https://github.com/tommytran732/Linux-Setup-Scripts
synced 2024-11-09 03:31:33 -05:00
Edge on Ubuntu
Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
parent
29333a3ae0
commit
01d015e3bd
@ -51,6 +51,13 @@ sudo apt install -y curl chrony
|
|||||||
unpriv curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/chrony.conf | sudo tee /etc/chrony/chrony.conf
|
unpriv curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/chrony.conf | sudo tee /etc/chrony/chrony.conf
|
||||||
sudo systemctl restart chronyd
|
sudo systemctl restart chronyd
|
||||||
|
|
||||||
|
# Setup Networking
|
||||||
|
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/NetworkManager/conf.d/00-macrandomize.conf | sudo tee /etc/NetworkManager/conf.d/00-macrandomize.conf
|
||||||
|
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/NetworkManager/conf.d/01-transient-hostname.conf | sudo tee /etc/NetworkManager/conf.d/01-transient-hostname.conf
|
||||||
|
sudo nmcli general reload conf
|
||||||
|
sudo hostnamectl hostname 'localhost'
|
||||||
|
sudo hostnamectl --transient hostname ''
|
||||||
|
|
||||||
# Setup UFW
|
# Setup UFW
|
||||||
#UFW Snap is strictly confined, unlike its .deb counterpart
|
#UFW Snap is strictly confined, unlike its .deb counterpart
|
||||||
sudo apt purge -y ufw
|
sudo apt purge -y ufw
|
||||||
@ -123,12 +130,24 @@ sudo rm -rf /usr/share/hplip
|
|||||||
sudo apt install -y gnome-console
|
sudo apt install -y gnome-console
|
||||||
sudo snap install gnome-text-editor loupe
|
sudo snap install gnome-text-editor loupe
|
||||||
|
|
||||||
# Setup Networking
|
# Install Microsoft Edge if x86_64
|
||||||
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/NetworkManager/conf.d/00-macrandomize.conf | sudo tee /etc/NetworkManager/conf.d/00-macrandomize.conf
|
MACHINE_TYPE=$(uname -m)
|
||||||
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/NetworkManager/conf.d/01-transient-hostname.conf | sudo tee /etc/NetworkManager/conf.d/01-transient-hostname.conf
|
if [ "${MACHINE_TYPE}" == 'x86_64' ] || [ -f /media/psf/RosettaLinux/rosetta ]; then
|
||||||
sudo nmcli general reload conf
|
output 'x86_64 machine, installing Microsoft Edge.'
|
||||||
sudo hostnamectl hostname 'localhost'
|
unpriv curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
|
||||||
sudo hostnamectl --transient hostname ''
|
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main"
|
||||||
|
sudo apt install -y microsoft-edge-stable
|
||||||
|
sudo mkdir -p /etc/opt/edge/policies/managed/ /etc/opt/edge/policies/recommended/
|
||||||
|
sudo chmod -R 755 /etc/opt/edge
|
||||||
|
unpriv curl https://raw.githubusercontent.com/TommyTran732/Microsoft-Edge-Policies/main/Linux/managed.json | sudo tee /etc/opt/edge/policies/managed/managed.json
|
||||||
|
sudo chmod 644 /etc/opt/edge/policies/managed/managed.json
|
||||||
|
unpriv curl https://raw.githubusercontent.com/TommyTran732/Microsoft-Edge-Policies/main/Linux/recommended.json | sudo tee /etc/opt/edge/policies/recommended/recommended.json
|
||||||
|
sudo chmod 644 /etc/opt/edge/policies/managed/managed.json /etc/opt/edge/policies/managed/recommended.json
|
||||||
|
sudo chmod 644 /etc/opt/edge/policies/managed/recommended.json
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Enable fstrim.timer
|
||||||
|
sudo systemctl enable --now fstrim.timer
|
||||||
|
|
||||||
# Installing tuned first here because virt-what is 1 of its dependencies anyways
|
# Installing tuned first here because virt-what is 1 of its dependencies anyways
|
||||||
sudo apt install tuned -y
|
sudo apt install tuned -y
|
||||||
@ -152,7 +171,4 @@ if [ "$virt_type" = '' ]; then
|
|||||||
sudo apt autoremove -y
|
sudo apt autoremove -y
|
||||||
else
|
else
|
||||||
sudo tuned-adm profile virtual-guest
|
sudo tuned-adm profile virtual-guest
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Enable fstrim.timer
|
|
||||||
sudo systemctl enable --now fstrim.timer
|
|
Loading…
Reference in New Issue
Block a user