Добавить
Уведомления

Create an Encrypted Filesystem on Linux

Create an Encrypted Filesystem # install encfs sudo apt-get install encfs # create two new folders mkdir /root/.encrypted mkdir /root/decrypted # create an encrypted filesystem encfs /root/.encrypted /root/decrypted # show mounts mount | grep enc # unmount /root/decrypted fusermount -u /root/decrypted # mount /root/encrypted to /root/decrypted/ encfs /root/encrypted /root/decrypted/

12+
14 просмотров
Год назад
3 мая 2024 г.
12+
14 просмотров
Год назад
3 мая 2024 г.

Create an Encrypted Filesystem # install encfs sudo apt-get install encfs # create two new folders mkdir /root/.encrypted mkdir /root/decrypted # create an encrypted filesystem encfs /root/.encrypted /root/decrypted # show mounts mount | grep enc # unmount /root/decrypted fusermount -u /root/decrypted # mount /root/encrypted to /root/decrypted/ encfs /root/encrypted /root/decrypted/

, чтобы оставлять комментарии