需下载:
- virtualbox for mac (https://www.virtualbox.org/)
- Centos7 (http://101.96.10.26/isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1611.iso)
- virtualboxadditions
(https://blogs.oracle.com/joshis/entry/virtualbox_guest_additions_iso_download)
三个安装都没有难度,按照提示安装即可。
Centos7 设置注意事项,因我需要桌面版 (用于开发),勾选了GNONE-桌面。
遇到问题:
-
无中文输入法
【系统应用程序】->【系统工具】->【设置】-> 【区域和语言】 Paste_Image.png
选择 【汉语(中国)】,选择【汉语(Intelligent Pinyin)】 -
mount时报无vboxsf
在centos中下载 virtualboxadditions
使用mount -o loop iso9660 VBoxGuestAdditions_2.2.0.iso /mnt/share
进入/mnt/share,
./VBoxLinuxAdditions.run install
mount -t vboxsf project /opt/project```
备注:/mnt/share 和 /opt/project 目录需先存在
3. 无pip
因使用python环境需安装pip
yum install epel-release
yum install python2-pip```
- 安装mysql-python not fount mysql_config
yum instal mariadb*```
就可以啦。
5. centos 时间不对
yum install ntp
ntpdate time.nist.gov ```
- 虚拟机中centos桌面 两边有黑框
这个是分辨率的问题
/boot/grub2/grub.cfg
linux16 /vmlinuz-3.10.0-229.11.1.el7.x86_64 root=/dev/mapper/centos-root ro rd.lvm.lv=centos/root rd.lvm.lv=centos/swap crashkernel=auto rhgb quiet LANG=zh_CN.utf8 systemd.debug
修改为(添加 vga=32A):
linux16 /vmlinuz-3.10.0-229.11.1.el7.x86_64 root=/dev/mapper/centos-root ro rd.lvm.lv=centos/root rd.lvm.lv=centos/swap crashkernel=auto rhgb quiet LANG=zh_CN.utf8 vga=32A systemd.debug
32A 对应的是1920120016
-
运行python文件时报 errorCannot find python interpreter...
是python项目没有设置python。截了张windows环境下的图,重点在Project Interpreter
Paste_Image.png
网友评论