课程时间
- 周一上午;周一下午;周二上午;周三下午;周四上午,周五上午,周五下午
软件下载
课程内容
信息系统基础
- 网络基础
- 工具介绍
- 虚拟化和云计算
- linux系统使用,linux基本命令练习
- linux软件安装方法介绍
- linux,apache,mysql工具安装包,安装和使用
- html,css,javascript,bootstrap,wordpress(CMS)介绍
- html网站制作,作业提交方法,wiki使用
作业提交
上传地址 IP : 101.6.160.33
请用winSCP软件上传作业
上传目录 /vr/tiyan/2019spring
用户名 vr 密码 vr123456
公用数据库:101.6.163.1 端口:3351 用户:vr 密码:vr123456
浏览地址 http://101.6.160.33/vr/tiyan
搭建web服务器
yum install httpd //安装http服务软件 systemctl start httpd //启动httpd服务apache
httpd启动后可以从浏览器浏览web http://ip
页面文件目录 /usr/www/html 配置文件 /etc/httpd/conf/httpd.conf
树莓派搭建web服务器
sudo apt-get install apache2 //安装apache2 sudo systemctl start apache2 //启动apache2
httpd启动后可以从浏览器浏览web http://ip 页面文件目录 /var/www/html
安装php支持,以下操作命令为树莓派上实验
sudo apt-get install php //自动安装php7 sudo wget https://github.com/pluck-cms/pluck/releases/download/4.7.8/pluck.tar.gz //下载pluck软件 tar -vxzf pluck.tar.gz sudo mv pluck-4.7.8 /var/www/html/pluck //拷贝目录 sudo chmod -R 777 /var/www/html/pluck //给予pluck目录写入权限,以便后面安装
浏览器打开 http://IP:/pluck //安装pluck
服务器作业目录安装pluck
登陆后
cd /www/vr/tiyan/2019autumn/学号目录/ cp -r /www/vr/tiyan/examples/pluck-4.7.8/ ./pluck chmod -R 777 /var/www/html/pluck
浏览器打开 http://IP:/pluck //安装pluck