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

The name of the pictureThe name of the pictureThe name of the pictureClash 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.










share|improve this 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














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.










share|improve this 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












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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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
















  • 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










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.






share|improve this answer



























    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.






    share|improve this answer
























      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.






      share|improve this answer






















        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.






        share|improve this answer












        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Aug 21 at 5:41









        Numb95

        111




        111












            Popular posts from this blog

            Peggy Mitchell

            Palaiologos

            The Forum (Inglewood, California)