使用Vagrant打造跨平台开发环境(转)
Vagrant是一个基于Ruby的工具,用于创建和部署虚拟化开发环境。它 使用Oracle的开源VirtualBox虚拟化系统,使用 Chef创建自动化虚拟环境 我们可以通过 Vagrant 封装一个…
Read moreVagrant是一个基于Ruby的工具,用于创建和部署虚拟化开发环境。它 使用Oracle的开源VirtualBox虚拟化系统,使用 Chef创建自动化虚拟环境 我们可以通过 Vagrant 封装一个…
Read more下面是案例: 1、查找当前网段内IP用户,重定向到ip.txt文件中 代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#/bin/bash a=1 while : do a=$(($a+1)) if test $a -gt 255 then break else echo $(ping -c 1 192.168.0.$a | grep "ttl" | awk '{print $4}'| sed 's/://g') ip=$(ping -c 1 192.168.0.$a | grep "ttl" | awk '{print $4}'| sed 's/://g') echo $ip >> ip.txt fi done |
结果: 文档。 2、case语句练习 代码…
Read more下面是案例: 1、ping测试IP地址 代码:
1 2 3 4 5 6 |
#!/bin/bash for i in 1 2 3 4 do echo "the number of $i computer is " ping -c 1 192.168.0.$i done |
结果:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
the number of 1 computer is PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data. --- 192.168.0.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 10000ms the number of 2 computer is PING 192.168.0.2 (192.168.0.2) 56(84) bytes of data. --- 192.168.0.2 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 10000ms the number of 3 computer is PING 192.168.0.3 (192.168.0.3) 56(84) bytes of data. --- 192.168.0.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 10000ms the number of 4 computer is PING 192.168.0.4 (192.168.0.4) 56(84) bytes of data. --- 192.168.0.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 10000ms |
2、打印…
Read moreShell是系统的用户界面,提供了用户与内核进行交互操作的一种接口。它接收用户输入的命令并把它送入内核去执行。 下面是案例: 1、比较两个数大小 代码: [crayon-6744abf9cf6de71…
Read moregrant all PRIVILEGES on discuz.* to lzqhuang@’123.123.123.123′ identified by ’1234…
Read more软件:putty 上传: 如果是单个目录: C:\Users\Administrator>C:\Users\Administrator\Desktop\putty\PSCP.EXE -r C:\…
Read more1、首先判断你服务器上是否安装了vsftpd rpm -q vsftpd 2、安装完成之后就要重启vsftpd服务 service vsftpd restart 3、到vsftpd的主配置文件里面 v…
Read more
1 |
cp -r /www/web/study_/public_html /lzq/ |
将public_html文件夹下的所有文件(包括目录)复制到 lzq目录下。
Read more基本的操作方法: 本文假设你的apahce安装目录为/usr/local/apache2,这些方法适合任何情况 apahce启动命令: 推荐/usr/local/apache2/bin/apachec…
Read more创建一个文件 touch test 查看当前目录下的所有文件详情 ls -l 改变文件或目录权限 chmod -R 777 文件或目录 1 = x 执行 2 = w 写 4 = r 读,比如own…
Read more