Está en la página 1de 4

Despues de instalar Ubuntu

Actualizar
sudo apt-get update
sudo apt-get upgrade

Instalar extras
sudo apt-get install ubuntu-restricted-extras

Instalar Ubuntu Tweak


sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak

Instalar LaTex
sudo apt-get install texlive-full

Montar automaticamente particion de windows

1. Debemos primeramente crear una carpeta en /media/, por ejemplo: /media/windows , para ello
abran una terminal y en ella pongan lo siguiente:
sudo mkdir /media/windows

2. Listo, ahora debemos averiguar exactamente qué partición deseamos montar, o sea, su
localización real. Para ello en la terminal escriban lo siguiente:
sudo fdisk -l | grep NTFS

3. Nos debe aparecer algo como esto:


/dev/sda1 63 40965749 20482843+ 7 HPFS/NTFS/exFAT
Les detallo en negrita lo que necesitamos de esa línea, que es justo lo primero en la línea, en el
ejemplo: /dev/sda1

4. Abrimos el archivo fstab localizado en /etc/ como superusuario


sudo gedit /etc/fstab
Saldra un archivo parecido a esto:
fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda2 during installation
UUID=cb9b356a-9b04-4171-a313-a7d3d960dff4 / ext4
errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=60592cf5-5a12-4941-9bf4-2407d43961b3 none swap sw
0 0

5. Agregar las lineas siguientes al final del archivo:

#ntfs para windows


/dev/sda1 /media/windows ntfs defaults 0 0

(cambiar /dev/sda1 por lo que salio en el paso 3)

6. Reiniciar PC y listo, la particion se monta automaticamente al iniciar


Monitor Hardware Temperature (Psensors)

Psensor can monitor:


• motherboard and CPU temperatures
• the temperature of Nvidia GPUs
• experimental ATI/AMD GPUs temperature monitor (not enabled for the Ubuntu PPA as it requires
compilation using libatiadlxx)
• hard disk drives temperature
• fan speed
• CPU usage

Install Psensor in Ubuntu


1. Firstly you need to install lm-sensors and hddtemp; these packages are required for Psensor
to be able to monitor CPU, hard disk and motherboard temperatures as well as CPU fan speed:
sudo apt-get install lm-sensors hddtemp

2. Set up hddtemp (Update: for Ubuntu 14.04 and newer, skip this step as Psensor doesn't require
it any more (it uses udisks2))

To get the hddtemp daemon to run on boot, use the following command:
sudo dpkg-reconfigure hddtemp

and select "Yes" when asked if hddtemp should run at boot. Select the defaults for the other questions.

3. Set up lm-sensors:
sudo sensors-detect

And answer "yes" to everything.


You can now either restart the computer or run the following command to load the modules required by
the sensors:
sudo service kmod start

4. Install Psensor
Psensor is available in the official Ubuntu repositories so to install it run the following command in a
terminal:
sudo apt-get install psensor

También podría gustarte