LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Trying to mount drives on Arch alarm Pogoplug install.... (https://www.linuxquestions.org/questions/linux-newbie-8/trying-to-mount-drives-on-arch-alarm-pogoplug-install-4175500389/)

Ryanms3030 04-02-2014 10:55 PM

Trying to mount drives on Arch alarm Pogoplug install....
 
I got Arch installed on my newly purchased Pogoplug v4. I connected a sata drive and a usb drive and now I'm trying to format, partition and mount them. Admittedly I have not really done this from the command line in any distro yet. What I have done is:

1.
Code:

fdisk -l
, identified my drive (sdb and sdc).
2. Formatted to ext4:
Code:

mkfs.ext4 /dev/sdb
3. Created a single primary partition on each drive
4. Created a mount point
Code:

mkdir /pogousb
5. Tried to mount drive into directory:
Code:

mount /dev/sdb1 /pogousb
6. Then I get the following error:

Code:

mount: wrong fs type, bad option, bad superblock on /dev/sdc1,
      missing codepage or helper program, or other error

      In some cases useful info is found in syslog - try
      dmesg | tail or so.

What I am I doing wrong?

syg00 04-02-2014 11:06 PM

Swap steps 2) and 3) - and mkfs on the partition, not the (entire) drive - "mkfs.ext4 /dev/sdb1". No need to repartition, just mkfs and mount.

Ryanms3030 04-02-2014 11:09 PM

Quote:

Originally Posted by syg00 (Post 5145700)
Swap steps 2) and 3) - and mkfs on the partition, not the (entire) drive - "mkfs.ext4 /dev/sdb1". No need to repartition, just mkfs and mount.

Thanks! I knew it was something simple/stupid I was doing. That worked like a charm


All times are GMT -5. The time now is 04:37 AM.