Fulltext results:
- Cleanup Packages @info:linux:debian
- (but not purged) packages with this command: <code bash> dpkg --get-selections | grep 'deinstall$' </code> You can feed this list directly to aptitude to purge the packages: <code bash> aptitude purge $(dpkg --get-selections | grep 'deinstall$' | cut
- Disable a Service @info:linux:debian
- sable a Service ====== To disable a service: <code bash> service <service> stop update-rc.d <service> enable|disable </code> With ''systemd'' (starting with Debian 8): <code bash> systemctl disable <service> </code> To (re)enable a service: <code bash> update-rc.d <servic
- Setting the Timezone @info:linux:debian
- c/timezone''. ===== Check the Timezone ===== <code bash> cat /etc/timezone </code> Example: <code> # cat /etc/timezone Europe/London </code> ===== Set the Timezone ===== You can use ''vi'': <code
- Cursor Size @info:linux:gnome
- ute the value ''32'' with your prefered size. <code bash> gsettings set org.gnome.desktop.interface cursor-size 32 </code> {{tag>desktop gnome linux mouse cursor settings
- Disable Core Dumps
- e_dumps'' with the content ''* hard core 0'': <code bash> echo '* hard core 0' > /etc/security/limits.d/no_core_dumps </code> Based on the "Nix Craft" article [[http://www.c
- pargs for Linux
- u miss ''pargs'' from Solaris, then try this: <code bash> ps eww -p <pid> </code> {{tag>linux sysadmin cli}}