44 lines
996 B
Markdown
Executable File
44 lines
996 B
Markdown
Executable File
# Debian TestUnit
|
|
|
|
|
|
These settings are only for "testing" virtual machines.
|
|
|
|
Mount the public folder as plan9 shared:
|
|
sudo mount -t 9p -o trans=virtio,version=9p2000.L,msize=104857600,uid=1000,gid=1000,access=client,cache=none,dirsync Public-sapient /home/user/Public
|
|
|
|
#### no passwd for sudo
|
|
```
|
|
sudo visudo
|
|
```
|
|
|
|
#### Find the line for your user or group and change it to:
|
|
`
|
|
username ALL=(ALL) NOPASSWD: ALL
|
|
`
|
|
|
|
### Remove user's password
|
|
```
|
|
sudo passwd -d $USER
|
|
```
|
|
|
|
### Installing Thorium
|
|
|
|
apt update
|
|
apt upgrade
|
|
apt install thorium-browser
|
|
sudo rm -fv /etc/apt/sources.list.d/thorium.list && \
|
|
sudo rm -fv /etc/apt/sources.list.d/thorium.list && sudo wget --no-hsts -P /etc/apt/sources.list.d/ http://dl.thorium.rocks/debian/dists/stable/thorium.list && sudo apt update
|
|
sudo apt install thorium-browser
|
|
ln -s /usr/bin/thorium-shell ./chromium
|
|
|
|
### Unneccsary default packages
|
|
firefox
|
|
brasero
|
|
thunderbird
|
|
libreoffice-core
|
|
|
|
### Remove gnome keyring
|
|
|
|
rm .local/share/keyrings/login.keyring
|
|
|