Welcome to LQ!
I am
guessing sdc is your new disk. Make sure
before you format it!
Have you partitioned and formatted it after physically installing it?
Quote:
[root@server1 dev]# ls -la sdc*
sdc:
total 0
drwxr-xr-x 1 root root 0 Nov 15 05:16 ./
drwxr-xr-x 1 root root 0 Dec 31 1969 ../
sdc1:
total 0
drwxr-xr-x 1 root root 0 Nov 15 05:16 ./
drwxr-xr-x 1 root root 0 Dec 31 1969 ../
|
sdc is
a reference to your whole disk
sdc1 is
a reference to the
first partition of sdc
Those files you see are just linux files, on your root filesystem. The file "." refers to "The current directory" the file ".." refers to the parent directory of the current one.
All directories, even empty ones, have these two files.
Commands to think about
:
fdisk /dev/sda to partition it.
mkfs.ext3 -j /dev/sdc1 to format it.
Then you'll need to make sure it is mounted at boottime, by adding an entry to
/etc/fstab. There are loads of threads about this on this board, just use the [SEARCH] button on this page.
Come back here if you have specific problems, and please update your profile so it lists what distro you are using (because they are all a little bit different)