User creation - hardware docs

This commit is contained in:
Jose 2023-03-20 11:44:27 -03:00
parent dfc8e11bec
commit a5c0022a9d
4 changed files with 39 additions and 6 deletions

3
.gitignore vendored
View File

@ -48,4 +48,5 @@ flycheck_*.el
# network security
/network-security.data
# local files
local/

View File

@ -10,10 +10,20 @@ How to -safely- migrate to [[https://www.fsf.org][free software]] (free as in fr
- [[./doc/migrate_gnulinux.org][Flashing a USB device to install a free software distritution]]
- [[./doc/migracao_gnulinux.org][Criando um pendrive vivo com Parabola GNU-Linux]]
** Package manager
*** TODO [#A] package manager document
- https://framatube.org/w/uubjKne6swPQpJWiQLfqxd
** System updates
* [[./doc/issues_update_parabola.org][Invalid or corrupted package when updating Parabola GNU-linux]]
** Users
* [[./doc/user_created.org][User creation and deletion]]
** Internet
* [[./doc/browsers.org][Browsers - internet protocols]]

View File

@ -1,8 +1,9 @@
#+date: 2023-03-15
| Hardware | Features | Comments |
|----------------------+-------------------------+----------|
| [[https://minifree.org/][Computers]] | Libreboot | |
| [[https://monod.gitlab.io/harpasol/tienda/][Computers harpasol]] | Libreboot | |
| [[https://www.fsf.org/resources/hw][FSF on free hardware]] | Free hardware resources | |
| Hardware | Features | Comments |
|----------------------+--------------------------------+----------|
| [[https://minifree.org/][Computers]] | Libreboot | |
| [[https://monod.gitlab.io/harpasol/tienda/][Computers harpasol]] | Libreboot | |
| [[https://www.fsf.org/resources/hw][FSF on free hardware]] | Free hardware resources | |
| [[https://www.xyte.ch/mods/x230/][Custom computers]] | Devices to customize computers | |

21
doc/user_created.org Normal file
View File

@ -0,0 +1,21 @@
#+date: 2023-03-20
* How to create and delete users in a system
Creating a user called "new_user"
#+begin_example sh
adduser new_user
#+end_example
Creating a directory in ~/home~ for the new user:
#+begin_example sh
chown -R new_user:new_user /home/new_user_home
#+end_example
Deleting the directory for the new user:
#+begin_example sh
sudo deluser --remove-home new_user_home
#+end_example