my documents, music and video folders have been moved to a tab called bookmarks within file manager and cannot be found when I try to access them also the folders in the picture have decided to take up residence on my desktop and I have no idea why, can this be fixed and if so can you please provide instructions, thanks in advance.

- 71
- 6
1 Answers
The following steps should fix the problem:
Create user dirs inside your home directory (issue Ctrl+Alt+T to launch Terminal)
mkdir Documents Music Videos Desktop
(normally, there should be also Pictures and Downloads dir, but they exist in your home, so I omitted them)
Boot into single user mode and try to fix the errors if any exist.
choose
fsck
from recovery menu. From it's output, remember the disk node which will be/dev/sdXY
.X
is letter, andY
is partition number. For example, most systems have/dev/sda1
though your home partition may be placed on another.choose
root
. It will give you the root shell prompt.type
fsck -p /dev/sdXY
.sdXY
should be replaced with your remembered disk node. This will automatically repair all fixable errors. Found files will be placed inside thelost+found
directory.
Once you have finished, resume normal boot (hit Ctrl+D)
Update your user dirs
xdg-user-dirs-update
Distribute found files into corresponding directories.
fsck
your filesystem and may be you will find your documents in thelost+found
directory. – Danatela Apr 01 '15 at 11:44fsck
work: https://www.digitalocean.com/community/tutorials/how-to-recover-from-file-system-corruption-using-fsck-and-a-recovery-iso – Danatela Apr 01 '15 at 11:49