Fulltext results:
- Cleanup Packages @info:linux:debian
- ckage is removed, it is only uninstalled, but the configuration remains on the system. This is a good ... you are able to reinstall the package and have it configured with the old configuration. But if you want to cleanup this old stuff, you can ge a list of uninstalled (but not purged) packages with this command: <code bash> dpkg --get-selections | grep '
- Disable Core Dumps
- ====== Disable Core Dumps ====== To disable core dumps create a file ''/etc/security/limits.d/no_core_dumps'' with the content ''* hard core 0'': <code bash> echo '* hard core 0' > /etc/security/limit
- Disable a Service @info:linux:debian
- Disable 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 <serv
- Setting the Timezone @info:linux:debian
- etc/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'': <co
- Cursor Size @info:linux:gnome
- o change the mouse cursor size in GNOME, use this command. Substitute 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 settin
- pargs for Linux
- you miss ''pargs'' from Solaris, then try this: <code bash> ps eww -p <pid> </code> {{tag>linux sysadmin cli}}