Created
August 18, 2025 15:14
-
-
Save mateusreis/cf018e21ab9acd59da0ec582d3c8faae to your computer and use it in GitHub Desktop.
share com rsync - Debian 13 - 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Criar um compartilhamento no Debian para usar com o samba do Windows: | |
| $ sudo apt update | |
| $ sudo apt install cifs-utils | |
| $ mkdir ~/Jarvis | |
| Pegue o ip correto e o diretorio: | |
| $ sudo mount.cifs //192.168.15.1/debian-share ~/Jarvis/ -o user=mateus | |
| Desmointe: | |
| $ sudo umount ~/Jarvis | |
| $ sudo umount /path/to/mount/point | |
| $ sudo umount -l /path/to/mount/point | |
| $ sudo dmesg | tail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment