LoginSignup
4
2

More than 5 years have passed since last update.

cifsでmount error(22): Invalid argumentの場合、ver2.1を付ける

Posted at
失敗例
$ sudo mount -t cifs -o username="user1",password="pass1",rw,uid=1000,gid=1000 \
    //192.168.100.2/share /mnt/share
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
ver2.1を付ければ成功した
$ sudo mount -t cifs -o username="user1",password="pass1",rw,uid=1000,gid=1000,vers=2.1 \
    //192.168.100.2/share /mnt/share
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2