最赞回答 / 好帮手慕珊
学完《Linux达人养成计划I》以后,可以继续学习shell编程,现在已经有四门shell编程的课了,先学《Tony老师聊shell-变量http://www.imooc.com/learn/336》有《Linux网络管理》http://www.imooc.com/learn/258
2015-05-03
linux 不靠拓展名区分文件类型(用权限来区分文件类型)
压缩包: “.gz” 、 "bz2" “。tar.bz2” , ".tgz" 等
二进制: ".rpm"
网页文件:“.html”,".php"
脚本文件: ".sh"
配置文件: ".conf"
压缩包: “.gz” 、 "bz2" “。tar.bz2” , ".tgz" 等
二进制: ".rpm"
网页文件:“.html”,".php"
脚本文件: ".sh"
配置文件: ".conf"
2015-05-02
关机重启命令:
shutdown -c :取消前一个关机命令
shutdown -r 时间: 在指定的时间关机:shutdown -r now
shutdown -h:关机
shutdown -r:重启
shutdown -c :取消前一个关机命令
shutdown -r 时间: 在指定的时间关机:shutdown -r now
shutdown -h:关机
shutdown -r:重启
2015-04-30
.tar.gz压缩命令:tar -cvf 打包文件名 源文件 ,gzip 打包文件名
解压缩:tar -xvf 打包文件名
压缩目录:tar -jcvf jp.tar.bz2 jp 解压缩目录: tar -jxvf jp.tar.bz2
解压缩:tar -xvf 打包文件名
压缩目录:tar -jcvf jp.tar.bz2 jp 解压缩目录: tar -jxvf jp.tar.bz2
2015-04-30