L.Alfredo
Quiz by , created more than 1 year ago

Lista de preguntas del curso

24
0
0
L.Alfredo
Created by L.Alfredo over 8 years ago
Close

Linux Exercice

Question 1 of 35

1

¿Cómo puedo saber el orden de ejecución de mis procesos?

Select one of the following:

  • Con el comando cron

  • Usando el comando grep

  • Comando ps y con el numero de proceso (PID)

Explanation

Question 2 of 35

1

¿Con que comando se monitorea la memoria?

Select one of the following:

  • Comando top

  • Comando free

  • comando cat /proc/meminfo

Explanation

Question 3 of 35

1

¿Cómo puedo ver el contenido de un archivo?

Select one or more of the following:

  • Comando cat

  • Comando tail

  • Comando more

  • Comando less

  • Todas las anteriores

Explanation

Question 4 of 35

1

¿Con cual comando puedo ver el directorio actual?

Select one of the following:

  • cat

  • pwd

  • dir

  • cd

Explanation

Question 5 of 35

1

¿Comando para saber quien soy en el equipo?

Select one of the following:

  • who

  • w

  • whoami

Explanation

Question 6 of 35

1

Podemos tener mas de una consola abierta

Select one of the following:

  • True
  • False

Explanation

Question 7 of 35

1

Físicamente existen todos los dispositivos que se encuentran en /dev

Select one of the following:

  • True
  • False

Explanation

Question 8 of 35

1

¿Cual comando reinicia el equipo?

Select one of the following:

  • reboot

  • shutdown -h now

  • shutdown -h

Explanation

Question 9 of 35

1

¿Que comando podrían apagar mi ordenador? (selecciona 2)

Select one or more of the following:

  • shutdown -r

  • halt

  • down

  • init 0

Explanation

Question 10 of 35

1

Cuál es el comando para limpiar la terminal

Select one of the following:

  • clear

  • cls

  • fresh

  • clean

Explanation

Question 11 of 35

1

¿Con qué comando puedo empaquetar y desempaquetar un conjunto de archivos o directorios?

Select one of the following:

  • empaquetar=gzip y desempaquetar=gunzip

  • empaquetar= -c rar y desempaquetar= -x rar

  • empaquetar= tar -c y desempaquetar= tar -x

Explanation

Question 12 of 35

1

¿Con qué comando genérico de UNIX puedo comprimir y descomprimir archivos y directorios?

Select one of the following:

  • tar -c y tar -x

  • gzip y gunzip

  • rzip y runzip

  • cpress y despress

Explanation

Question 13 of 35

1

¿Con cual comando puedo ver cuantos, usuarios están conectados al equipo?

Select one of the following:

  • who

  • uname

  • lsb_release -a

Explanation

Question 14 of 35

1

¿Como puedo obtener información acerca de un comando?

Select one of the following:

  • man "nombrecomando"

  • help "nombrecomando" --help

  • "nombrecomando" --??

Explanation

Question 15 of 35

1

¿Con qué comando realizo un borrado seguro y sin posibilidades de recuperación?

Select one of the following:

  • rm -rf "archivo"

  • shred -u "archivo"

  • mv "archivo"

  • rm "archivo"

Explanation

Question 16 of 35

1

¿Comando que sirve para crear un enlace?

Select one of the following:

  • cp

  • mv

  • ln

Explanation

Question 17 of 35

1

¿Como puedo borrar directorios con todos sus archivos dentro?

Select one of the following:

  • shred

  • rm -r

  • mv

  • rm -f

Explanation

Question 18 of 35

1

¿Cómo se le llaman a los drivers en UNIX?

Select one of the following:

  • módulos

  • modprobe

  • libs

Explanation

Question 19 of 35

1

En consola ¿Cómo puedo autocompletar?

Select one of the following:

  • Con la tecla TAB

  • Con la tecla Ctrl

  • Con la tecla Alt

Explanation

Question 20 of 35

1

¿Comando que nos ayuda a matar un proceso?

Select one of the following:

  • kill

  • stop

  • kill all

Explanation

Question 21 of 35

1

¿Qué es el kernel?

Select one of the following:

  • El sistema operativo principal

  • El núcleo del sistema operativo

  • El contenedor del sistema

Explanation

Question 22 of 35

1

¿Con qué comando podemos verificar la version del kernel?

Select one of the following:

  • uname -a

  • uname

  • uname -r

Explanation

Question 23 of 35

1

¿Cómo verifico los módulos cargados?

Select one of the following:

  • insmod

  • rmmod

  • lsmod

Explanation

Question 24 of 35

1

¿Cómo obtengo información sobre un modulo determinado?

Select one of the following:

  • modinfo

  • infomod

  • modinfo -a

Explanation

Question 25 of 35

1

¿Cómo ver lo que hacen los usuarios conectados?

Select one of the following:

  • w

  • who

  • who -a

Explanation

Question 26 of 35

1

¿Donde se encuentran los archivos de configuración del sistema?

Select one of the following:

  • /dev

  • /usr

  • /opt

  • /etc

Explanation

Question 27 of 35

1

¿Ver los detalles de los archivos como los inodos?

Select one of the following:

  • ls -i

  • ls -a

  • ls -lrt

  • ls -ha

Explanation

Question 28 of 35

1

¿Cual es la herramienta, para crear eliminar o modificar particiones en UNIX?

Select one of the following:

  • partprobe

  • fdisk -l

  • fdisk

Explanation

Question 29 of 35

1

¿Cuantos niveles de ejecución tiene linux?

Select one of the following:

  • 6

  • 7

  • 4

Explanation

Question 30 of 35

1

¿Cómo ejecuto un programa en 2do plano?

Select one of the following:

  • comando &&

  • comando &

  • comado ;

Explanation

Question 31 of 35

1

¿Cómo traer un proceso de 2do plano a 1er plano?

Select one of the following:

  • bg %n proceso

  • fg %n proceso

Explanation

Question 32 of 35

1

Funciona como un cd normal, moviéndonos al directorio especificado, pero además, como su nombre indica, introduce dicho directorio en una pila.

Select one of the following:

  • popd

  • pushd

  • dirs

Explanation

Question 33 of 35

1

Funciona como cd pero al escribir este comando nos moveremos al último directorio añadido a la pila.

Select one of the following:

  • popd

  • pushd

  • dirs

Explanation

Question 34 of 35

1

Pasa un índice para imprimir tan solo el directorio seleccionado por el índice. (similar a pwd)

Select one of the following:

  • dir

  • pwd -a

  • dirs

Explanation

Question 35 of 35

1

¿Que fichero presente normalmente en cualquier archivo .tar se debería consultar en primer lugar?

Select one of the following:

  • AUTHORS

  • README

  • CREDITS

Explanation