0

I first eject device using sudo eject /dev/sr1. And then sudo umount /dev/sr1. But now it's not showing me the device which i'm unmounted. I want to mount it using command.

Shrikant
  • 101
  • 1
  • 2

1 Answers1

1
sudo fdisk -l

to check which is the usb disk. In case, for example, of /dev/sdb1, then

sudo mount -t vfat /dev/sdb1 path_to_mount_point

more reference here.

Sfrow
  • 353