Difference between revisions of "Linux"

From Sinfronteras
Jump to: navigation, search
Line 4: Line 4:
  
 
==Comandos Linux==
 
==Comandos Linux==
 +
 +
 +
Para saber las características del hardware y del SO:
 +
caracteristicas_hardware_sistema
  
 
Desplegar el SO (detallando la versión) instalado:
 
Desplegar el SO (detallando la versión) instalado:
  
 
$ lsb_release -a
 
$ lsb_release -a
 +
 +
 +
http://askubuntu.com/questions/55609/how-do-i-check-system-specifications
 +
 +
In System Monitor se presentan algunas características.
 +
 +
For command line solutions, you can use the command lshw.
 +
 +
sudo apt-get install sysinfo
 +
 +
then run something like
 +
 +
sudo lshw -html > mySpecs.html
 +
 +
then check the html file.
 +
 +
 +
Para saber si el SO 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
 +
 +
 +
$ getconf LONG_BIT

Revision as of 16:07, 15 January 2016

Instalación de Ubuntu

Cosas que hacer después de instalar Ubuntu

Comandos Linux

Para saber las características del hardware y del SO: caracteristicas_hardware_sistema

Desplegar el SO (detallando la versión) instalado:

$ lsb_release -a


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

In System Monitor se presentan algunas características.

For command line solutions, you can use the command lshw.

sudo apt-get install sysinfo

then run something like

sudo lshw -html > mySpecs.html

then check the html file.


Para saber si el SO 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


$ getconf LONG_BIT