2021-12-07 14:13
163
0
0
0
wget是一个从网络上自动下载文件的自由工具。它支持HTTP,HTTPS和FTP协议,可以使用HTTP代理.所谓的自动下载是指,wget可以在用户退出系统的之后在后台执行。这意味这你可以登录系统,启动一个wget下载任务,然后退出系统,wget将在后台执行直到任务完成,相对于其它大部分浏览器在下载大量数据时需要用户一直的参与,这省去了极大的麻烦。wget 可
2021-12-07 14:13
144
0
0
0
解决LFS kernel panic -not syncing :VFS:Unable to mount root fs on Unknown-block(0,0)2011年04月16日 星期六 15:50转载自 sunteach最终编辑 sunteach终于解决LFS kernel panic -not syncing :VFS:Unable to mou
2021-12-07 14:12
127
0
0
0
scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file] [-l limit] [-o ssh_option] [-P port] [-S program] [[user@]host1:]file1 ... [[user@]host2:]file2DESCRIPTION :scp cop
2021-12-07 14:12
116
0
0
0
文本编辑器VI的使用vi是标准的linux文本编辑程序vi filename如果存在文件就打开否则新建vi booke状态行输入模式(输入文本)命令模式(执行命令)末行模式(执行特定命令)iaoIAO进入编辑模式命令模式在命令模式下,可以输入命令执行许多种功能:w(保存):wq(保存退出):x(保存退出):q!(不保存退出)光标移动(上下左右)编辑模式开头处
2021-12-07 14:12
125
0
0
0
管理文件权限chmod命令格式1chmod [-R] {[ugoa][+-=][rwxst]}格式2:chmod [-R] {ugoa][+-=][ugo]}-R若为目录,则递归属性chmod go-r testfile1chmod u+x tstfie1chmod u-x,go +r testfile1chmod g=u testfile1chmod o
2021-12-07 14:11
225
0
0
0
tar 打包命令-x:创建-v:显示运行过程-f:指定文件名-z:调用gzip-t:查看压缩文件的内容-x:解开tar文件tar -cvf test.tar将当前文件夹内文件压缩成test.tartar -cvf abc.tartar -xvf ../abc.tar 解压tar -zcvf efg.tar.gz *tar -zxvf efg.tar.gzgz
2021-12-07 14:11
120
0
0
0
安装xunsearch 出现failed to configure scws和configure: error: zlib.h not found今天本地测试tipask,然后需要安装xunsearch,在安装时出现了错误[vagrant@askbuy~]$cd/usr/local
[vagrant@askbuylocal]$ls
binetcgamesin
2021-12-07 14:09
136
0
0
0
iptables常用端口设置
#开启22端口
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 22 -j ACCEPT
#关闭所有端口
iptables -P INPUT DROP
iptables -P FORWARD DRO