zoukankan      html  css  js  c++  java
  • Linux与Window文件共享

    Ubuntu中访问windows文件: Samba

    1. 在Windows设置网络共享, 而且还必须有一个拥有访问共享权限的用户.

    2. Linux下运行   

        sudo mount –t cifs –o username=test,password=password123 //192.168.1.101/ShareFolder /mht

        该命令运行之后, 在/mht目录中就可以发现Windows共享文件夹中的文件了.

        似乎中文路径的文件和文件夹访问都会有问题.

    3. 取消映射可以使用命令

        sudo umount /mnt

    Windows中访问Ubuntu Linux文件: 使用WinSCP软件就可以了. 非常方便.

    在Linux下,  运行命令sudo apt-get install openssh-server来安装secure shell server安装并启动起来.

    这个ssserver是使用WinSCP所必需的.

    小技巧, 当不知道具体要安装什么的时候, 使用sudo apt-cache search all|grep ssh 命令查询所有包之中含有ssh三个字母的包.

    sudo passwd命令来解除对root用户的锁定.

  • 相关阅读:
    Mysql 备份 导入导出
    简 历
    Mysql 表结构 创建 限制 关联
    Unity 碰撞检测
    Unity 获取键值
    关于大型网站系统的一些问题
    关于zookeeper
    dubbo分布式和消息队列
    集群
    cookie及安全问题
  • 原文地址:https://www.cnblogs.com/awpatp/p/1530228.html
Copyright © 2011-2022 走看看