Meu Ubuntu


Minha lista pessoal de programas favoritos para ubuntu

  • Indicator CPU Frequence
sudo add-apt-repository ppa:artfwo/ppa
sudo apt-get update
sudo apt-get install indicator-cpufreq
  • GIMP
  • Vmware
  • PCSX
  • DIA
  • NetBeans
  • Apache
  • DropBox
  • GoogleDrive
  • LibreOffice
  • GNS3

gedit

Por algum motivo, o GEDIT tem vindo sem a opção de mudar as preferencias, para mudar isso digite o comando abaixo:

gsettings set org.gnome.settings-daemon.plugins.xsettings overrides '@a{sv} {"Gtk/ShellShowsAppMenu": <int32 0>}' 
gedit

crontab

Verificar se há jobs para algum usuário (precisa ser root)

for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done