Skip to content

Commit

Permalink
Modify the symbolic link command
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanways committed Dec 14, 2023
1 parent 6117b45 commit 8bd3b82
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,12 @@ cd /usr/bin

Make a soft link (shortcut) of your scripts file.

```
ln -s /var/pandoras/pandoras.sh ./pandoras # Remember /var/pandoras can be different
chmod a+x pandoras
exit # Exit from root
```shell
sudo ln -s /var/pandoras/pandoras.sh ./pandoras # Remember /var/pandoras can be different
ls -l pandoras
```

`a+x`: This part specifies the change to be made. Here, a refers to "all users," and +x means to add the execute permission.
Symbolic links (symlinks) in Linux always appear with the permissions lrwxrwxrwx, which means they are read, write, and execute for all users, but it doesn't represent the actual permissions of the target file or directory. The permissions of the symlink itself are not relevant in terms of access control.

Create your first chroot image.

Expand Down

0 comments on commit 8bd3b82

Please sign in to comment.