Vous venez d’installer Ubuntu et vous ne savez pas par où commencer?
Et bien cet article est pour vous.
Voici les bons réflexes à avoir :
- Supprimer le compte invité (pourquoi laisser n’importe qui se connecter?) :
sudo vi /etc/lightdm/lightdm.conf
Puis modifiez le fichier en ajoutant la dernière ligne
(allow-guest=false)[SeatDefaults] greeter-session=unity-greeter user-session=ubuntu allow-guest=false
- Désactiver le bluetooth démarrage :
gedit /etc/rc.localOn ajoute la ligne suivanterfkill block bluetooth
voici à quoi devrait ressemble le fichier après édition.
#!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. rfkill block bluetooth exit 0
- Mettre à jour vos dépots :
apt-get upgrade
apt-get update - Enfin, je vous conseil d’installer Wine qui permet d’utiliser des binaires windows :apt-get install wine
en cas de soucis, je vous invite à aller jeter un oeil à la documentation de la communauté Ubuntu (http://doc.ubuntu-fr.org/wine)