• Ubuntu挂载windows下的共享文件夹


    Ubuntu挂载windows下的共享文件夹

    更新apt源

    如果出现安装失败,需要更新apt源为阿里云
    # 备份原始文件
    sudo cp /etc/apt/sources.list.d/* /etc/apt/sources.list.d.bak/
    
    # 修改文件内容
    sudo vim /etc/apt/sources.list
    
    # 替换内容为如下
    deb https://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
    deb-src https://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
    deb https://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
    deb-src https://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
    
    deb https://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
    deb-src https://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
    
    deb https://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
    deb-src https://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
    
    ## Not recommended
    # deb https://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
    # deb-src https://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
    
    # wq保存退出
    
    # 更新源
    sudo apt-get update
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    正式操作

    # 安装cifs-utils 工具
    sudo apt-get install cifs-utils
    
    # 挂载共享目录
    sudo mount -t cifs //<windows_ip>/<shared_folder_path> /mnt/<mount_point> -o username=<username>,password=<password>
    # 例如
    # sudo mount -t cifs "//192.168.1.100/Shared Folder" /mnt/myshare -o username=user,password=pass
    
    # 取消挂载
    sudo umount /mnt/myshare
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  • 相关阅读:
    多线程技术的历史发展与简单使用
    国外ATG网络进展及余割平方波束ATG地面天线设计
    MYSQL 高可用集群搭建 ---MHA
    测试H5需要注意的交互测试用例点
    wireguard协议分析
    python图片预标注
    JS defineProperty详解
    容易被忽视的CNN模型的感受野及其计算
    从入门到一位合格的爬虫师,这几点很重要
    如何轻松做好设备巡检管理?
  • 原文地址:https://blog.csdn.net/xirigh/article/details/134008848