web-dev-qa-db-ja.com

ホームフォルダー内の削除されたフォルダーの回復

誤って、ホームフォルダー内のいくつかのフォルダー(空でした)を削除しました。新しいものを作成しましたが、適切なアイコンなどがありません...それらをステップごとに再作成するにはどうすればよいですか?

4
Patryk

OK、削除されたディレクトリを復元します

編集~/.config/user-dirs.dirs

gedit ~/.config/user-dirs.dirs

次のようになります。

# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a Shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
# 
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Templates"
XDG_PUBLICSHARE_DIR="$HOME/Public"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/Music"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/Videos"

それが失敗した場合、Ubuntu Tweakをインストールして実行します

http://ubuntu-Tweak.com/

Screen Shot

6
Panther

まず、できるだけ早くハードドライブからシステムの使用を停止します。ライブCDを起動して、そこからリカバリを試みる必要があります。

私はext4ファイルシステムで一般的に悪い結果を混合しましたが、順にtestdiskを試し、次にphotorecを試します。どちらもリポジトリにあり、ライブセッションでインストールできます。

Sudo apt-get update
Sudo apt-get install testdisk

次に、コマンドラインからtestdiskを実行します

# you might be able to run it as a user, but I would run it as root
Sudo testdisk

スクリーンショット付きのステップバイステップのチュートリアルがあります、こちら

http://www.cgsecurity.org/wiki/TestDisk:_undelete_file_for_ext2

それが失敗する場合、photorecを試してください。

Photorecはtestdiskパッケージの一部です。ここでも詳細な説明があります。

http://www.cgsecurity.org/wiki/PhotoRec_Step_By_Step

それが失敗した場合、extundeleteを試すことができます

http://extundelete.sourceforge.net/

前回試したとき、ファイルは回復しませんでした。

幸運を。

0
Panther