how to protect the directory using password in LINUX (Need to add or modify files after encrypted )? [duplicate]

Clash Royale CLAN TAG#URR8PPP
up vote
-1
down vote
favorite
This question already has an answer here:
Simplest way to password protect a directory and its contents without having to create new files?
2 answers
Is there any possibilities to protect the directory using the PIN number in Linux. But we need to add or modify files inside the encrypted directory.
rhel security directory password
marked as duplicate by Sparhawk, maulinglawns, dirkt, msp9011, ñÃÂsýù÷ Aug 21 at 6:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
up vote
-1
down vote
favorite
This question already has an answer here:
Simplest way to password protect a directory and its contents without having to create new files?
2 answers
Is there any possibilities to protect the directory using the PIN number in Linux. But we need to add or modify files inside the encrypted directory.
rhel security directory password
marked as duplicate by Sparhawk, maulinglawns, dirkt, msp9011, ñÃÂsýù÷ Aug 21 at 6:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Encrypt the directory and add the PIN as a passphrase.
â dsstorefile1
Aug 21 at 5:26
add a comment |Â
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
This question already has an answer here:
Simplest way to password protect a directory and its contents without having to create new files?
2 answers
Is there any possibilities to protect the directory using the PIN number in Linux. But we need to add or modify files inside the encrypted directory.
rhel security directory password
This question already has an answer here:
Simplest way to password protect a directory and its contents without having to create new files?
2 answers
Is there any possibilities to protect the directory using the PIN number in Linux. But we need to add or modify files inside the encrypted directory.
This question already has an answer here:
Simplest way to password protect a directory and its contents without having to create new files?
2 answers
rhel security directory password
rhel security directory password
edited Aug 21 at 9:02
asked Aug 21 at 5:09
EBIN GLADSON
796
796
marked as duplicate by Sparhawk, maulinglawns, dirkt, msp9011, ñÃÂsýù÷ Aug 21 at 6:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Sparhawk, maulinglawns, dirkt, msp9011, ñÃÂsýù÷ Aug 21 at 6:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Encrypt the directory and add the PIN as a passphrase.
â dsstorefile1
Aug 21 at 5:26
add a comment |Â
Encrypt the directory and add the PIN as a passphrase.
â dsstorefile1
Aug 21 at 5:26
Encrypt the directory and add the PIN as a passphrase.
â dsstorefile1
Aug 21 at 5:26
Encrypt the directory and add the PIN as a passphrase.
â dsstorefile1
Aug 21 at 5:26
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
There's a semi-secure way (as the developer of the tools mention that this tool can be vulnerable to some kind of attack method) but useful way. using encfs
first, you need to install it via a package manager.
e.g. sudo apt install encfs
Note that during installation, the package manager will notice about vulnerability
then you need to run the program to create the directory and its raw storage directory.
with this command you do this:
encfs ~/.crypt ~/crypt
After this step, it will say to enter expert or normal mode. select what you wish and enter your desirable password.
The last step is unmounting the directory to protect data. for that just do this:
sudo umount ~/crypt
UPDATE:
you can use the GUI way.
also, you can use Unix permissions which mentioned here.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
There's a semi-secure way (as the developer of the tools mention that this tool can be vulnerable to some kind of attack method) but useful way. using encfs
first, you need to install it via a package manager.
e.g. sudo apt install encfs
Note that during installation, the package manager will notice about vulnerability
then you need to run the program to create the directory and its raw storage directory.
with this command you do this:
encfs ~/.crypt ~/crypt
After this step, it will say to enter expert or normal mode. select what you wish and enter your desirable password.
The last step is unmounting the directory to protect data. for that just do this:
sudo umount ~/crypt
UPDATE:
you can use the GUI way.
also, you can use Unix permissions which mentioned here.
add a comment |Â
up vote
1
down vote
There's a semi-secure way (as the developer of the tools mention that this tool can be vulnerable to some kind of attack method) but useful way. using encfs
first, you need to install it via a package manager.
e.g. sudo apt install encfs
Note that during installation, the package manager will notice about vulnerability
then you need to run the program to create the directory and its raw storage directory.
with this command you do this:
encfs ~/.crypt ~/crypt
After this step, it will say to enter expert or normal mode. select what you wish and enter your desirable password.
The last step is unmounting the directory to protect data. for that just do this:
sudo umount ~/crypt
UPDATE:
you can use the GUI way.
also, you can use Unix permissions which mentioned here.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
There's a semi-secure way (as the developer of the tools mention that this tool can be vulnerable to some kind of attack method) but useful way. using encfs
first, you need to install it via a package manager.
e.g. sudo apt install encfs
Note that during installation, the package manager will notice about vulnerability
then you need to run the program to create the directory and its raw storage directory.
with this command you do this:
encfs ~/.crypt ~/crypt
After this step, it will say to enter expert or normal mode. select what you wish and enter your desirable password.
The last step is unmounting the directory to protect data. for that just do this:
sudo umount ~/crypt
UPDATE:
you can use the GUI way.
also, you can use Unix permissions which mentioned here.
There's a semi-secure way (as the developer of the tools mention that this tool can be vulnerable to some kind of attack method) but useful way. using encfs
first, you need to install it via a package manager.
e.g. sudo apt install encfs
Note that during installation, the package manager will notice about vulnerability
then you need to run the program to create the directory and its raw storage directory.
with this command you do this:
encfs ~/.crypt ~/crypt
After this step, it will say to enter expert or normal mode. select what you wish and enter your desirable password.
The last step is unmounting the directory to protect data. for that just do this:
sudo umount ~/crypt
UPDATE:
you can use the GUI way.
also, you can use Unix permissions which mentioned here.
answered Aug 21 at 5:41
Numb95
111
111
add a comment |Â
add a comment |Â
Encrypt the directory and add the PIN as a passphrase.
â dsstorefile1
Aug 21 at 5:26