linux - Can't mount removable drive after formatting to ext -


i'm trying install crouton on usb stick chrome os.

procedure

first thing did unmounted:

sudo umount /dev/sda1 

then formatted ext:

sudo mkfs.ext4 /dev/sda1 

then try mount again running command:

sudo mount /dev/sda1 

error

mount: can't find /dev/sda1 in /etc/fstab

i dont know linux flavour you're using.

mount appeared fail , looked in fstab file (/etc/fstab ) mounting options.

you try.

~]# mkdir /mount/point ~]# mount -t ext4 /dev/device /mount/point 

or

to mount permanently add fstab. ref /etc/fstab overview

all best


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -