This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
timedatectl set-local-rtc 1 --adjust-system-clock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-SmbClientConfiguration -RequireSecuritySignature $false | |
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install apt-transport-https gnupg | |
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/deb.torproject.org-keyring.gpg] https://deb.torproject.org/torproject.org noble main" | sudo tee /etc/apt/sources.list.d/tor.list | |
curl -fsSL https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --dearmor | sudo tee /usr/share/keyrings/deb.torproject.org-keyring.gpg > /dev/null | |
sudo apt update | |
sudo apt install tor deb.torproject.org-keyring |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo killall snapd | |
sudo killall snap-store | |
sudo snap refresh snap-store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I'm using my laptop docked and the external monitor is the only active display. So the internal is set off atm. By default the login screen does not appears on the external display for some reasons. | |
Here's a workaround: | |
sudo cp ~/.config/monitors.xml ~gdm/.config/monitors.xml | |
sudo chown gdm:gdm ~gdm/.config/monitors.xml | |
Additional workaround to start login screen on X11 instead Wayland: | |
Uncomment WaylandEnable=false in /etc/gdm3/custom.conf file. |