-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1 - Linux Permissions
62 lines (42 loc) · 2.71 KB
/
1 - Linux Permissions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Gerenciamneto de Permissões de Arquivos no Linux
Este projeto faz parte de uma prática do curso de Cibersegurança realizada pelo Google através do Coursera, onde demonstra o uso de comandos Linux para gerenciar permissões de arquivos e diretório. Este README documenta as etapas realizadas, os comandos e as explicações dos resultados obtidos.
## Descrição do Projeto
O objetivo desta atividade é garantir que os arquivos e diretórios estejam configurados com permissões adequadas, assegurando que apenas usuários autorizados tenham aceso. Durante a prática, foram usados comandos como *ls*, *chmod*, *ls -l*, *ls -la* para visualizar e modificar permissões no sistema Linux.
## Comandos Utilizados
*ls*: Exibe uma lista de arquivos e diretórios no diretório atual
*chmod*: Modifica a permissão de arquivos e diretórios
*ls -l*: Exibe uma lista detalhada de arquivos e diretórios
*ls -la*: Exibe uma lista detalhada, incluindo arquivos ocultos (começam com ponto, *.*)
# Detalhes
drwxrwxrwx 1 researcher2 research_team 46 Jan 6 08:39 project_k.txt
*d*: diretório
*r*: read
*w*: write
*x*: execute
*1*: n° de links para o arquivo
*researcher2*: nome do proprietário do arquivo
*researcher_team*: nome do grupo ao qual o arquivo pertence
*46*: tamanho do arquivo em bytes
*Jan 6 08:39*: data e hora da última modificação do arquivo
*project_k.txt*: nome do arquivo
# File-Permissions-in-Linux
This project is part of a practice from the Cybersecurity course offered by Google through Coursera, demonstrating the use of Linux commands to manage file and directory permissions. This README documents the steps performed, the commands used, and the explanations of the results obtained.
## Project Description
The goal of this activity is to ensure that files and directories are configured with appropriate permissions, guaranteeing that only authorized users have access. During the practice, commands such as ls, chmod, ls -l, and ls -la were used to view and modify permissions in the Linux system.
## Commands Used
*ls*: Displays a list of files and directories in the current directory.
*chmod*: Modifies file and directory permissions.
*ls -l*: Displays a detailed list of files and directories.
*ls -la*: Displays a detailed list, including hidden files (starting with a dot, .).
# Details
drwxrwxtwx 1 researcher2 research_team 46 Jan 6 08:39 project_k.txt
*d*: Directory
*r*: Read
*w*: Write
*x*: Execute
*1*: Number of links to the file
*researcher2*: Name of the file owner
*research_team*: Name of the group associated with the file
*46*: File size in bytes
*Jan 6 08:39*: Date and time of the file's last modification
*project_k.txt*: Name of the file