Difference between revisions of "Linux"

From Sinfronteras
Jump to: navigation, search
Line 7: Line 7:
 
https://help.ubuntu.com/community/Installation/FromUSBStick
 
https://help.ubuntu.com/community/Installation/FromUSBStick
  
$ usb-creator
+
usb-creator
  
 
Al parecer también se puede utilizar: UnetBootin, LiliUSB or Universal USB Installer
 
Al parecer también se puede utilizar: UnetBootin, LiliUSB or Universal USB Installer
Line 31: Line 31:
 
====Desplegar el SO instalado (detallando la versión)====
 
====Desplegar el SO instalado (detallando la versión)====
  
$ lsb_release -a
+
lsb_release -a
  
 
http://askubuntu.com/questions/55609/how-do-i-check-system-specifications
 
http://askubuntu.com/questions/55609/how-do-i-check-system-specifications
Line 38: Line 38:
 
====Para saber si el SO instalado es 32 o 64bit====
 
====Para saber si el SO instalado es 32 o 64bit====
  
$ uname -a
+
uname -a
  
 
Result for 32-bit Ubuntu:
 
Result for 32-bit Ubuntu:
Line 49: Line 49:
  
  
$ getconf LONG_BIT
+
O a través del comando:
 +
 
 +
getconf LONG_BIT
  
  
 
====Para crear un archivo html detallado con todas las características del harware====
 
====Para crear un archivo html detallado con todas las características del harware====
  
sudo apt-get install sysinfo
+
sudo apt-get install sysinfo
  
 
then run something like
 
then run something like
  
sudo lshw -html > mySpecs.html
+
sudo lshw -html > mySpecs.html
  
 
then check the html file.
 
then check the html file.
Line 65: Line 67:
 
===Para ver las particiones y dispositivos montados===
 
===Para ver las particiones y dispositivos montados===
  
$ lsblk
+
lsblk
  
$ df -h
+
df -h

Revision as of 23:15, 17 January 2016

Instalación de Ubuntu

Instalar Ubuntu/Windows desde disco USB

Creating a bootable Ubuntu USB flash drive from Ubuntu:

https://help.ubuntu.com/community/Installation/FromUSBStick

usb-creator

Al parecer también se puede utilizar: UnetBootin, LiliUSB or Universal USB Installer https://help.ubuntu.com/community/Boot-Repair

Para hacerlo a partir de la línea de comandos: http://askubuntu.com/questions/372607/how-to-create-a-bootable-ubuntu-usb-flash-drive-from-terminal


How can I create a Windows bootable USB stick with Ubuntu:

http://askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-with-ubuntu winusb


Cosas que hacer después de instalar Ubuntu

Comandos Linux

Para saber las características del hardware y del SO

Desplegar el SO instalado (detallando la versión)

lsb_release -a

http://askubuntu.com/questions/55609/how-do-i-check-system-specifications


Para saber si el SO instalado es 32 o 64bit

uname -a

Result for 32-bit Ubuntu:

   Linux discworld 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 i686 i686 i386 GNU/Linux

whereas the 64-bit Ubuntu will show:

   Linux discworld 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux


O a través del comando:

getconf LONG_BIT


Para crear un archivo html detallado con todas las características del harware

sudo apt-get install sysinfo

then run something like

sudo lshw -html > mySpecs.html

then check the html file.


Para ver las particiones y dispositivos montados

lsblk
df -h