Windows 7を削除してUbuntuをインストールしました。今、ハードディスクドライブが見つかりません。これらのコマンドを試しました。
Sudo fdisk -l
dev/sda1、sda2、sda5。という名前の3つのハードディスクがあることを示しています
しかしdevを開いて開こうとすると、テキストファイルのように見えます。
そのファイルはsda2: block special
です
Ubuntu 14.04を使用しています。
よろしくお願いします。
これは、/dev/sdaX
パーティションにアクセスする方法です。
Sudo mount /dev/sdaX /mnt
/mnt
に移動します
注:何か問題があると思います。それ以外の場合は、ここからパーティションにアクセスできるはずです。
通常、/dev
からプライマリディスクにアクセスすることはありません。
プライマリディスクは、コンピューターの起動時に自動的にmountedになります。
root(WindowsのC:\
と同等)は、単に/
として識別されます。ユーザーのすべてのホームフォルダー(特別なユーザーroot
を除く)は、/home
(Windows内のC:\Users
と同等)と呼ばれるフォルダー内に格納されます。自分のホームフォルダーが名前に含まれます。ユーザー名がfred
で、ホームフォルダーが/home/fred
であるとします。
ターミナルが好きなら、コマンドcd
を使用してこれらのフォルダーにアクセスし、ls
を使用してその内容をリストできます。そのため、これらのコマンドを試してください(説明のためだけであるため、#
で始まるビットは無視してください)。
cd / # Take you to the root folder.
pwd # Show where you are right now, i.e. "/".
ls -l # List all the folders and files within the root folder.
cd /home # Take you to the main home folder.
ls -l # List all the users' home folders (probably just yours).
cd ~ # The tilde is a short-cut for "/home/fred" (or whatever your username is).
# This is also called your home folder (rather than the /home folder).
cd /home/fred # Equivalent to the previous command.
cd # Also equivalent to the previous command, because the default for
# cd is to change to your home folder.
pwd # Show where you are right now, i.e. "/home/fred".
ls -l # List all of your own folders and files.
ls -lA # Again list, but include all of the hidden folders and files.
# All hidden files and folders begin with a dot.
ls -la # As previous, but include the two special folders "." and "..".
# "." simply means "this folder", while ".." means the parent folder.
cd . # Change to the current folder; i.e. do nothing.
pwd # Still shows "/home/fred".
cd .. # Change to the parent folder; in this case, to /home.
pwd # Shows "/home".
mount # View all of your mounted partitions.
端末よりもGUIを使用する場合は、ファイルマネージャー(技術的にはNautilusと呼ばれます)を使用してフォルダーとファイルにアクセスできます。画面の右上にあるランチャーの[ファイル]アイコンをクリックします。
これにより、すべての(隠されていない)フォルダーとファイルを表示できるホームフォルダーに直接移動できます。メニュー([表示]> [非表示のファイルを表示])を押すか、またはを押して、非表示のフォルダーとファイルの表示と非表示を切り替えることができます。 Ctrl+H。
ところで…
disksとpartitionsの違いを学習すると役立つ場合があります。 Windowsはこの2つを混同し、両方を「ディスク」と呼びます。 /dev/sda
はプライマリディスクであり、/dev/sda1
、/dev/sda2
などの番号が付けられたさまざまなパーティションが含まれています。番号は連続している必要はありません。
インストールでは、おそらく/dev/sda1
がルート、/dev/sda2
が/home
、/dev/sda5
がLinuxスワップ領域ですが、mount
とSudo fdisk -l
(またはSudo parted --list
)の組み合わせが確実にわかります。