随笔分类 -  linux系统管理

摘要:我的笔记本装的是 Ubuntu 12.04 ,大概有一年多的时间,不定期出现连wifi时失败的情况,一般这时我就重启一下路由,通常再试一次就能连上了,加上自己也比较懒,所以一直没太关注这个问题。但是最近是彻底连不上了,不解决不行了。 先查了一下硬件情况,无线网卡是可以看到的。 fanyuchao@dell-desktop:~$ lshw -C networkWARNING: you should run this program as super-user. *-network description: Wireless interface ... 阅读全文
posted @ 2013-03-17 23:49 范宇超 阅读(572) 评论(0) 推荐(0)
摘要:1. 取出两个文件的并集(重复的行只保留一份) cat file1 file2 | sort | uniq2. 取出两个文件的交集(只留下同时存在于两个文件中的文件) cat file1 file2 | sort | uniq -d3. 删除交集,留下其他的行 cat file1 file2 | sort | uniq –u 阅读全文
posted @ 2011-06-09 23:42 范宇超 阅读(325) 评论(0) 推荐(0)