应用 - Linux
钟超
阿里巴巴集团总监/资深综合运营专家,连续创业者,关于 AI、电商、社交媒体领域,毕业于中国科学技术大学计算机系本科。
展开
-
Ubuntu中解决pdf中文乱码或不显问题
alex@alex-laptop:~$ sudo apt-get install poppler-dataalex@alex-laptop:~$ sudo rm /etc/fonts/conf.d/49-sansserif.conf Done!原创 2009-11-15 16:05:00 · 2356 阅读 · 1 评论 -
Linux环境中以daemon方式运行的程序生成core dump
Linux环境中以daemon方式运行的程序生成core dump作者:柳大·Poechant(钟超)邮箱:zhongchao.ustc#gmail.com(# -> @)博客:Blog.CSDN.net/Poechant日期:June 30th, 20121 精要在/etc/profile中添加: ulimit -c unlimited > /dev/null 2?&1修改/proc/sys原创 2012-06-30 18:17:06 · 8001 阅读 · 1 评论 -
Classical 10 Examples for learning AWK
Classical 10 Examples for learning AWK作者:柳大·Poechant(钟超)邮箱:zhongchao.ustc#gmail.com(# -> @)博客:Blog.CSDN.net/Poechant日期:June 9th, 2012Example 1: Formatting Fields Into Columnscountries文件:Canada:3852:25原创 2012-06-14 08:17:57 · 4581 阅读 · 1 评论 -
Linux下执行一些命令前加sudo时出现command not found的原因
转载请注明来自“柳大的CSDN博客”:http://blog.csdn.net/poechant 当我们用sudo来执行cd、ls等命令时,会出现command not found的提示:sudo cd /home/michaelsudo: command not found 我们知道在执行Linux命令时,如果在其前面加上sudo,就表示以root权限执行。原创 2012-01-28 17:00:13 · 61853 阅读 · 4 评论 -
Linux下scp命令使用
scp -P 1234 /root/abc.zip root@192.168.1.102:/abc/P指定ssh的端口号root可改为其他username.原创 2011-08-22 13:49:18 · 2409 阅读 · 0 评论 -
Linux下修改/增加默认load(link)路径
在/etc/ld.so.conf.d下增加文件,文件中写入路径。然后输入ldconfig命令。完。原创 2011-08-12 11:13:24 · 3676 阅读 · 0 评论 -
Linux下查找含有某字符串的文件的方法
grep "John" /usr/include -r其中"John"是你要查找的内容,可以使用通配符和转义字符。/usr/include是你要搜索的目录-r是所在的一个参数,是可选的(optional),r表示recursive原创 2011-08-09 19:48:37 · 3238 阅读 · 0 评论 -
Linux基础之Poechant问题解决与技巧集锦:Linux 查看文件里有多少行 wc命令
使用wc命令 具体通过wc --help 可以查看。如:wc -l filename 就是查看文件里有多少行 wc -w filename 看文件里有多少个word。 wc -L filename 文件里最长的那一行是多少个字。原创 2011-06-01 14:36:00 · 2285 阅读 · 0 评论 -
Linux下PDF批注编辑软件Xournal
安装方法 sudo apt-get install Xournal原创 2011-03-27 03:18:00 · 3149 阅读 · 0 评论 -
Ubuntu 10.10 安装谷歌PINYIN拼音输入法 详细步骤
http://www.u2game.net/bbs/viewthread.php?tid=26840&page=1 ubuntu其实自己带的输入法ibus也不是很烂,只是感觉输入起来有些词语非常麻烦,比 如“的”默认在第二个,而且词频还无法调整。于是想到 GOOGLE谷歌的拼音输入法,找 了很多UBUNTU 10.04版本的安装方法,貌似在10.10上面用起来很诡异,或者无法安装成转载 2011-03-25 04:13:00 · 4257 阅读 · 1 评论 -
Linux下用Firefox的插件阅读CHM格式文件的方法
下载地址: https://addons.mozilla.org/en-us/firefox/addon/chm-reader/ 打开方式: Firefox的菜单栏,File->Open CHM Files->找到你要打开的CHM文件。原创 2011-03-24 05:35:00 · 4022 阅读 · 0 评论 -
Linux基础之CodeMan问题解决与技巧集锦:Linux中“Networking Disabled”问题(解决Ubuntu等OS无法上网)
在Terminal中输入如下命令:sudo vim /etc/network/interfaces 打开后,将文本改写为:auto eth0iface eth0 inet dhcp 然后保存(vi或vim中的保存方法是按ESC键,然后wq,即保存不并退出),然后在Terminal输入如下命令sudo /etc/init.d/networking restart原创 2010-12-09 13:22:00 · 3056 阅读 · 1 评论 -
Linux基础之CodeMan问题解决与技巧集锦:Linux中PDF阅读乱码问题
sudo wget http://poppler.freedesktop.org/poppler-data-0.1.tar.gz sudo tar xzvf poppler-data-0.1.tar.gzcd poppler-data-0.1sudo make install datadir=/usr/share原创 2010-12-03 22:37:00 · 238 阅读 · 0 评论 -
CodeMan的Linux问题解决集锦:Linux下卸载文件的命令
sudo apt-get remove xxx 只适用于使用sudo apt-get install命令安装的软件,其中xxx是你所要卸载的软件名称。原创 2010-12-03 14:51:00 · 1932 阅读 · 0 评论 -
CodeMan的Linux问题解决集锦:Linux打开阅读chm文件和解决chm中文乱码的方法
常见的Linux下的.chm文件的阅读器有两种:xchm和chmsee,下载安装xchm的方式如下:sudo apt-get install xchm 下载安装chmsee:sudo apt-get install chmsee 但是xchm打开含有中文的文件会将中文显示为乱码,所以建议使用chmsee。原创 2010-12-03 14:48:00 · 3517 阅读 · 0 评论 -
CodeMan的Linux问题解决与技巧集锦:Linux Shell下命令su出现authentication failure解决方法
如果出现如下的情况:$ suPassword:su: Authentication failure 那么可以:sudo passwd rootEnter new UNIX password:Retype new UNIX password:passwd: password updated succefully 这样就可以了。$ suPassword:root原创 2010-12-01 18:42:00 · 2828 阅读 · 0 评论 -
通过 Samba 实现 Win/Mac 访问 Linux
通过 Samba 实现 Win/Mac 访问 Linux作者:柳大·Poechant博客:blog.CSDN.net/Poechant日期:March 17th, 20121 公开访问1.1 安装 Sambasudo apt-get install sambasudo apt-get install smbfs1.2 创建共享目录sudo mkdir /home/michael/shares原创 2012-03-17 23:15:21 · 17868 阅读 · 0 评论