本地连接虚拟系统 VMware

  • 安装包下载
  • Python-3.6.6.tgz
  • 史上最详细的VMware Workstation Pro 15安装教程
  • VMWare Pro15虚拟机设置共享文件夹
  • VMware安装CentOS7超详细版
  • 报错:configure: error: no acceptable C compiler found in $PATH

  • window下用vscode访问vm虚拟机

# Read more about SSH config files: https://linux.die.net/man/5/ssh_config
Host Centos7
    HostName 192.168.159.129
    User royluck
    Port 22

  • [pipenv: 未找到命令...]
ln -s /usr/local/python3.6/bin/pipenv /usr/bin/pipenv

  • 此主机支持 Intel VT-x,但 Intel VT-x 处于禁用状态

  • VSCode配置远程开发、Linux虚拟机开发环境

  • 解决VM中不显示共享文件夹和共享文件夹hgfs的权限问题
sudo umount /mnt/hgfs // 如果之前已经挂载 hgfs,先取消挂载
sudo /usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o nonempty -o allow_other -o uid=1000 -o gid=1000 -o umask=022 // 重新用以下命令挂载即可


ssh [email protected]

  • pip安装python包出错:Could not find a version that satisfies the requirement skimage (from versions: )
pip3 install pipenv -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

  • windows/linux环境python3出现pip is configured with locations that require TLS/SSL, however the..不可用的解决方法
./configure --prefix=/usr/local/python3.6 --with-ssl

netstat -tunlp | grep prot
lsof -i tcp
kill -9 6096

  • window系统下,设置mongodb远程访问
image.png
改好之后重启window

进入mysql指令

 mysql -u root -p

ln -s /usr/local/python3.6/bin/virtualenv /usr/bin/virtualenv

你可能感兴趣的:(本地连接虚拟系统 VMware)