Comandos y Atajos de Linux
16 Questions
2 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

¿Qué comando se utiliza para mostrar las primeras diez líneas de un archivo?

  • tail
  • head (correct)
  • cat
  • more
  • ¿Cuál es la función principal del comando 'rm'?

  • Crear un directorio
  • Copiar archivos
  • Borrar archivos o directorios (correct)
  • Mover archivos
  • ¿Qué opción del comando grep permite buscar recursivamente dentro de subdirectorios?

  • -r (correct)
  • -i
  • -n
  • -c
  • ¿Qué comando se utiliza para mostrar la descripción breve de la página de manual?

    <p>whatis</p> Signup and view all the answers

    ¿Cuál es el propósito del comando 'mkdir'?

    <p>Crear un directorio</p> Signup and view all the answers

    ¿Qué hace el comando 'touch' en el sistema?

    <p>Abre y cierra un archivo</p> Signup and view all the answers

    ¿Qué comando se utiliza para copiar archivos?

    <p>cp</p> Signup and view all the answers

    ¿Qué opción del comando grep permite mostrar el número de líneas que coinciden con el patrón?

    <p>-c</p> Signup and view all the answers

    ¿Qué significa que Linux sea 'case sensitive'?

    <p>Las letras mayúsculas y minúsculas son consideradas diferentes.</p> Signup and view all the answers

    ¿Cuál es la función del comando 'man' en Linux?

    <p>Mostrar detalles de otros comandos.</p> Signup and view all the answers

    ¿Cómo se referiría a un archivo en el directorio actual utilizando su nombre?

    <p>simplemente mencionándolo por su nombre.</p> Signup and view all the answers

    Si estás en el directorio /home/alumno y quieres referenciar el archivo mi_texto.txt en /home/alumno/trabajos, ¿cuál sería la forma correcta de hacerlo?

    <p>trabajos/mi_texto.txt</p> Signup and view all the answers

    ¿Qué comando se utiliza para mostrar el directorio actual en el que se está trabajando?

    <p>pwd</p> Signup and view all the answers

    Si te encuentras en el directorio /home/otro_alumno y necesitas acceder al archivo mi_texto.txt en el directorio /home/alumno/trabajos, ¿cuál es la ruta correcta?

    <p>../alumno/trabajos/mi_texto.txt</p> Signup and view all the answers

    ¿Qué comando se utiliza para cambiar de directorio en Linux?

    <p>cd</p> Signup and view all the answers

    ¿Qué comando permite listar el contenido de un directorio incluyendo archivos ocultos?

    <p>ls -a</p> Signup and view all the answers

    Study Notes

    Linux Commands and Shortcuts

    • Linux is "case sensitive," meaning Archivo, archivo, and ARCHIVO are considered different.
    • Linux's bash shell has autocompletion:
      • One option: Tab completes.
      • Multiple options: Tab twice shows a list.
    • Everything in Linux is a file.
    • "." refers to the current directory.
    • ".." refers to the parent directory.
    • Files can be located using absolute or relative paths.
    • The root directory in the FHS is "/".
    • To refer to a file like /home/alumno/trabajos/mi_texto.txt:
      • Absolute path: Starts from the root directory (/).
        • Example: /home/alumno/trabajos/mi_texto.txt
        • Always finds the file in the same location.
      • Relative path: Starts from the current directory.
        • Example in /home/alumno/trabajos: mi_texto.txt
        • Location depends on the current directory.

    Basic Linux Commands

    • man: Displays details of other commands. (e.g., man ls)
    • cd: Changes the current directory.
    • pwd: Prints the current working directory.
    • ls: Lists directory contents.
      • ls -a: Includes hidden files.
      • ls -l: Shows detailed file information (permissions, owner, size, etc.).
    • touch: Creates an empty file or updates the timestamp of an existing file.
    • cat: Displays the contents of a file.
    • more: Displays file contents, one page at a time.
    • cp: Copies files or directories.
    • mv: Moves files or directories.
    • mkdir: Creates directories.
    • rm: Deletes files or directories.
      • rm -r: Deletes directories recursively (even if not empty).
    • rmdir: Deletes empty directories.
    • whatis: Briefly describes a command.
    • apropos: Searches for commands related to a keyword.
    • exit: Exits the current shell session.
    • logout: Logs out the current user session.
    • uname: Displays system information.
    • tail: Displays the last few lines of a file.

    Advanced Linux Commands (grep, head, etc.)

    • head: Displays the first few lines of a file.

    • grep: Searches for patterns in files.

      • Options for grep:
        • -c: Counts matching lines.
        • -e: Specifies multiple patterns.
        • -r: Recursively searches directories.
        • -v: Shows non-matching lines.
        • -i: Ignores case.
        • -n: Numbers matching lines.
        • -E: Enables extended regular expressions.
        • -o: Prints only the matching part of each line.
        • -f: Reads patterns from a file.
    • color: Displays output in color for easier reading

    • w : Searches for exact word matches.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Related Documents

    Comandos y Shortcuts PDF

    Description

    Este cuestionario se centra en los comandos básicos y atajos utilizados en Linux. Aprenderás sobre la navegación en el sistema de archivos, el uso de rutas absolutas y relativas, y la sensibilidad de mayúsculas. Prepárate para poner a prueba tus conocimientos sobre Linux.

    More Like This

    Bash Shell Grundlagen
    10 questions

    Bash Shell Grundlagen

    AdoringClavichord avatar
    AdoringClavichord
    at & Localization Pop Quiz
    9 questions

    at & Localization Pop Quiz

    GuiltlessAshcanSchool avatar
    GuiltlessAshcanSchool
    Chapter 8: Working with Directories
    16 questions
    Bash Scripting 3
    40 questions

    Bash Scripting 3

    RevolutionaryFern2779 avatar
    RevolutionaryFern2779
    Use Quizgecko on...
    Browser
    Browser