vault backup: 2023-08-27 20:28:17
This commit is contained in:
parent
06b7cd18cb
commit
da1943b72f
16
.obsidian/workspace.json
vendored
16
.obsidian/workspace.json
vendored
@ -148,6 +148,13 @@
|
|||||||
},
|
},
|
||||||
"active": "ef0c6f52955f9b86",
|
"active": "ef0c6f52955f9b86",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Desktop Files/xterm.desktop",
|
||||||
|
"Desktop Files/tde-trinity.desktop",
|
||||||
|
"Desktop Files/tde-arch.desktop",
|
||||||
|
"Desktop Files/i3-ubuntu.desktop",
|
||||||
|
"Desktop Files/i3-arch.desktop",
|
||||||
|
"Desktop Files/cinnamon-arch.desktop",
|
||||||
|
"Desktop Files",
|
||||||
"Cheat Sheets/distrobox.md",
|
"Cheat Sheets/distrobox.md",
|
||||||
"Cheat Sheets/arch.md",
|
"Cheat Sheets/arch.md",
|
||||||
"Cheat Sheets/Apache.md",
|
"Cheat Sheets/Apache.md",
|
||||||
@ -175,14 +182,7 @@
|
|||||||
"Cheat Sheets/i3 wm.md",
|
"Cheat Sheets/i3 wm.md",
|
||||||
"Cheat Sheets/VS Codium.md",
|
"Cheat Sheets/VS Codium.md",
|
||||||
"Cheat Sheets/Cheat Sheet.md",
|
"Cheat Sheets/Cheat Sheet.md",
|
||||||
"Cheat Sheets/Virtualbox.md",
|
|
||||||
"Cheat Sheets/Containers",
|
"Cheat Sheets/Containers",
|
||||||
"Cheat Sheets/VM",
|
"Cheat Sheets/VM"
|
||||||
"Cheat Sheets/Kubernetes",
|
|
||||||
"Cheat Sheets/ssl.txt",
|
|
||||||
"Cheat Sheets/ssh.txt",
|
|
||||||
"Cheat Sheets/server-notes.txt",
|
|
||||||
"Cheat Sheets/ldap.txt",
|
|
||||||
"Cheat Sheets/kvm.txt"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
5
Desktop Files/cinnamon-arch.desktop
Normal file
5
Desktop Files/cinnamon-arch.desktop
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Type=XSession
|
||||||
|
Exec=/usr/bin/distrobox-enter -n arch -- cinnamon-session-cinnamon
|
||||||
|
Name=Cinnamon Arch
|
5
Desktop Files/i3-arch.desktop
Normal file
5
Desktop Files/i3-arch.desktop
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Type=XSession
|
||||||
|
Exec=/usr/bin/distrobox-enter -n arch -- i3
|
||||||
|
Name=i3 Arch
|
5
Desktop Files/i3-ubuntu.desktop
Normal file
5
Desktop Files/i3-ubuntu.desktop
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Type=XSession
|
||||||
|
Exec=/usr/bin/distrobox-enter -n ubuntu -- i3
|
||||||
|
Name=i3 Ubuntu
|
6
Desktop Files/tde-arch.desktop
Normal file
6
Desktop Files/tde-arch.desktop
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Type=XSession
|
||||||
|
Exec=/usr/bin/distrobox-enter -n arch -- "/opt/trinity/bin/starttde"
|
||||||
|
Name=TDE Arch
|
||||||
|
|
5
Desktop Files/tde-trinity.desktop
Normal file
5
Desktop Files/tde-trinity.desktop
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Type=XSession
|
||||||
|
Exec=/usr/bin/distrobox-enter -n trinity -- "/opt/trinity/bin/starttde"
|
||||||
|
Name=TDE (Trinity Image)
|
7
Desktop Files/xterm.desktop
Normal file
7
Desktop Files/xterm.desktop
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Type=XSession
|
||||||
|
Exec=xterm
|
||||||
|
TryExec=xterm
|
||||||
|
Name=xterm
|
||||||
|
DesktopNames=xterm
|
15
README.md
15
README.md
@ -18,6 +18,7 @@ In this example, I'm going to create one for Arch, Ubuntu, and and older version
|
|||||||
distrobox-create arch --image docker.io/library/archlinux:latest
|
distrobox-create arch --image docker.io/library/archlinux:latest
|
||||||
distrobox-create ubuntu --image docker.io/library/ubuntu
|
distrobox-create ubuntu --image docker.io/library/ubuntu
|
||||||
distrobox-create deb9 --image docker.io/library/debian:9
|
distrobox-create deb9 --image docker.io/library/debian:9
|
||||||
|
distrobox-create trinity --image docker.io/jsevans/trinitydesktop
|
||||||
```
|
```
|
||||||
|
|
||||||
### Configure xsessions
|
### Configure xsessions
|
||||||
@ -84,11 +85,21 @@ DesktopNames=xterm
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Copy the to `/opt/share/xsessions` (which we have linked to /usr/share/xsessions). Then logout and when you log back in, you will see an xterm option. If you log in, you will get a single terminal screen. If you exit the terminal, it will log you out.
|
Copy `xterm.desktop` to /opt/share/xsessions (which we have linked to /usr/share/xsessions). Then logout and when you log back in, you will see an xterm option. If you log in, you will get a single terminal screen. If you exit the terminal, it will log you out.
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo cp xterm.desktop /opt/share/xsessions/
|
sudo cp xterm.desktop /opt/share/xsessions/
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install Mate in Ubuntu
|
### Install Trinity Desktop in Ubuntu
|
||||||
|
|
||||||
|
Enter into the Distrobox session.
|
||||||
|
```
|
||||||
|
distrobox enter ubuntu
|
||||||
|
```
|
||||||
|
|
||||||
|
Install the mate-desktop-environment package. This will take some time since it installs a lot of packages with it.
|
||||||
|
```
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install mate-desktop-environment
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user