The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Hiding "lost+found" folder?

    Discussion in 'Linux Compatibility and Software' started by MiamiGuttaMan, Jun 19, 2008.

  1. MiamiGuttaMan

    MiamiGuttaMan Notebook Enthusiast

    Reputations:
    0
    Messages:
    14
    Likes Received:
    0
    Trophy Points:
    5
    I recently created several new ext3 data partitions to mount up in my /home folder. But when I started to look into these new folders, I see these "lost+found" folders. I looked it up through Google and I now know what these folders are used for, but they're just plain annoying and I think it's time for them to go on vacation. Is there anyway that I can hide these folders? Thanks

    GM
     
  2. timberwolf

    timberwolf Notebook Consultant

    Reputations:
    131
    Messages:
    288
    Likes Received:
    0
    Trophy Points:
    30
    If you don't want to see it, don't store files in the root level of your filesystem i.e. create a directory and store the files starting one level into that part of the filesystem tree.

    You could probably reorganise by changing the mountpoint and setting up a symbolic link into the folder.
     
  3. MiamiGuttaMan

    MiamiGuttaMan Notebook Enthusiast

    Reputations:
    0
    Messages:
    14
    Likes Received:
    0
    Trophy Points:
    5
    Thanks bruh, but one thing I tried was to open Nautilus as root and renamed each "lost+found" folder to ".lost+found". I figured to do that from the git-go, but I'm not sure if it will affect any part of the system in an adverse way.......
     
  4. Icewalker

    Icewalker Notebook Consultant

    Reputations:
    63
    Messages:
    105
    Likes Received:
    0
    Trophy Points:
    30
    Renaming lost+found to .lost+found will last till the next file system check. Lost+found is a designated directory that will be automatically created on file system check, if it's not there.

    Short answer is: To the best of my knowledge, you can't easily hide it.
     
  5. timberwolf

    timberwolf Notebook Consultant

    Reputations:
    131
    Messages:
    288
    Likes Received:
    0
    Trophy Points:
    30
    I haven't tested this, but it may be possible to mount the disk on a hidden mountpoint and then symbolic link to it.

    For example, if the extra data partition is mounted here:

    Code:
    /home/music
    change it to mount on (I've skipped a few steps on how you do this!)

    Code:
    /home/.blah
    and then create a new directory under .blah and symbolic link it

    Code:
    mkdir /home/.blah/music
    ln -s /home/.blah/music /home/music
     
  6. szandor

    szandor Notebook Evangelist

    Reputations:
    66
    Messages:
    323
    Likes Received:
    0
    Trophy Points:
    30
    you know, that /dev directory is really bugging the **** out of me...i think i'll move it...
     
  7. Gintoki

    Gintoki Notebook Prophet

    Reputations:
    2,886
    Messages:
    6,566
    Likes Received:
    0
    Trophy Points:
    205
    Uh, that's not a very good idea. You shouldn't go moving around folders in the root directory like that, you may mess something up horribly.
     
  8. atbnet

    atbnet Notebook Prophet

    Reputations:
    5,868
    Messages:
    5,889
    Likes Received:
    2
    Trophy Points:
    206
    I think it was a joke, or so I hope! :p
     
  9. lemur

    lemur Emperor of Lemurs

    Reputations:
    524
    Messages:
    1,024
    Likes Received:
    0
    Trophy Points:
    55
    That's how I would do it except that I would look into using mount --bind instead of symbolic links. You can bind subtrees of a filesystem anywhere you feel like.
     
  10. MiamiGuttaMan

    MiamiGuttaMan Notebook Enthusiast

    Reputations:
    0
    Messages:
    14
    Likes Received:
    0
    Trophy Points:
    5
    ...that directory is next, ;)

    ...this solution worked the best for me; I actually re-formed my partition table and created a large hidden data partition to store my music, videos, downloads, audio/video projects, etc., each into it's own folders, and then created symbolic links to these folders in my /home directory. Thanks Bruh. :D