wget下载URL提示无法建立SSL连接解决方法:原命令上加上" --no-check-certificate"这是因为wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败。加上"--no-check-certificate"选项,就能排除掉这个错误。下载成功! Read More
Linux中有好多中不同的shell,bash是linux默认的shell,免费且容易使用。su切换为root权限1.创建shell脚本touch hello.sh2.编辑:vi hello.sh内容#! /bin/bash#the first programecho "hello world"3.... Read More
1.下载安装Xshell2.右击打开终端,输入su ->口令切换到root3.查看虚拟机IP输入命令:ifconfig 若提示not found ,输入/sbin/ifconfig(export PATH=$PATH:/sbin后,就可以直接使用ifconfig了)192.168.220.128,就... Read More
准备工作:下载安装:VMware8.0 (这版本相对稳定,体积小)下载:rhel-server-5.8-i386-dvd.isoReady? Go!1.新建空的虚拟机,相当于多了一台电脑除了以上几步其他默认就好~有兴趣再研究不同配置的区别吧~2.选择镜像,相当于把光盘放进电脑3.安装Linux系统启... Read More