Linux CPU frequency
See current CPU frequency
To display frequencies of all CPU cores every second:
To display frequencies of all CPU cores every second:
When dual-booting Linux and Windows,it might be better to set the clock to the local time zone in Linux1 to in sync with Windows settings.
How to recover Nautilus (File manager in Gnome) places folders.
Arch Wiki: environment variables
/etc/profile is sourced by all POSIX-compatible shells upon login./etc/profile.d/ directory will also be read.~/.profile or ~/.bash_profile for login bash instances.~/.bashrc for every interactive bash instance.~/.zshenv for environment variables in all zsh instances.~/.zprofile for every login zsh instance.~/.zshrc for every interactive zsh instance.Note
zsh does not source ~/.profile by default because of the difference between bash and zsh syntaxes. You can add this line to ~/.zprofile or ~/.zshenv to make zsh shells read `~/.profile correctly.
~/.xinitrc is sourced by startx.~/.xprofile is sourced by display managers (e.g., GDM, SDDM)~/.config/environment.d/*.conf: sourced by systemd. Also, they are used in Wayland sessions where xinitrc and xprofile files are not available.Environment variables in Powershell
Variables created by set are bound to the current session and not persistent.
[Environment]::SetEnvironmentVariable('KEY', 'VAL', 'Machine')SETX KEY VAL