48 lines
704 B
Markdown
48 lines
704 B
Markdown
# Proxmox as a workstation
|
|
|
|
## sources
|
|
https://pve.proxmox.com/wiki/Developer_Workstations_with_Proxmox_VE_and_X11
|
|
|
|
|
|
## Destop Enviroment
|
|
|
|
### lightdm
|
|
|
|
``` bash
|
|
apt install xfce4 chromium lightdm
|
|
```
|
|
|
|
## lightdm auto login
|
|
|
|
```bash
|
|
# /etc/lightdm/lightdm.conf
|
|
[SeatDefaults]
|
|
autologin-user=USERNAME_TO_AUToLOGIN
|
|
autologin-user-timeout=5
|
|
# Uncomment the following, if running Unity
|
|
#greeter-session=unity-greeter
|
|
```
|
|
|
|
|
|
## Disable ligthdm black scren idle
|
|
```bash
|
|
# /etc/lightdm/lightdm.conf
|
|
[Seat:*]
|
|
xserver-command=X -s 0 dpms
|
|
```
|
|
|
|
|
|
## Gnome
|
|
|
|
``` bash
|
|
apt install gnome
|
|
|
|
# Problems with suspend on login screen
|
|
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0
|
|
```
|
|
|
|
|
|
|
|
|
|
|