Fulltext results:
- Cleanup Packages @info:linux:debian
- not purged) packages with this command: <code bash> dpkg --get-selections | grep 'deinstall$' </code... ectly to aptitude to purge the packages: <code bash> aptitude purge $(dpkg --get-selections | grep 'd... First, you have to install ''deborpan'': <code bash> aptitude install deborphan </code> Then you can get the list of orphans: <code bash> deborphan </code> If you want, you can even mor
- Disable a Service @info:linux:debian
- a Service ====== To disable a service: <code bash> service <service> stop update-rc.d <service> ena... th ''systemd'' (starting with Debian 8): <code bash> systemctl disable <service> </code> To (re)enable a service: <code bash> update-rc.d <service> enable|disable service <se... th ''systemd'' (starting with Debian 8): <code bash> systemctl enable <service> </code> {{tag>linux
- Setting the Timezone @info:linux:debian
- ezone''. ===== Check the Timezone ===== <code bash> cat /etc/timezone </code> Example: <code> # ca... the Timezone ===== You can use ''vi'': <code bash> vi /etc/timezone </code> Or set it directy: <code bash> echo "Europe/Berlin" > /etc/timezone </code> {{
- Cursor Size @info:linux:gnome
- he value ''32'' with your prefered size. <code bash> gsettings set org.gnome.desktop.interface cursor
- Disable Core Dumps
- ps'' with the content ''* hard core 0'': <code bash> echo '* hard core 0' > /etc/security/limits.d/no
- pargs for Linux
- s ''pargs'' from Solaris, then try this: <code bash> ps eww -p <pid> </code> {{tag>linux sysadmin cl