Linux学习笔记
qiaoning13256
这个作者很懒,什么都没留下…
展开
-
如何在ubuntu下安装输入法
前提:电脑需联网在终端输入:sudo add-apt-repository ppa:shawn-p-huang/ppa sudo apt-get update sudo apt-get install ibus-gtk ibus-qt4 ibus-pinyin ibus-pinyin-db-open-phrase接下来,再 任务栏-输入法-重新启动后,即可使用。原创 2011-10-28 18:43:13 · 965 阅读 · 0 评论 -
修复/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory 问题
1、在64系统里执行32位程序如果出现/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory,安装下glic即可sudo yum install glibc.i6862、error while loading shared libraries: libz.so.1: cannot open shared原创 2012-07-21 00:32:59 · 11734 阅读 · 2 评论 -
Fedora 17 安装中文输入法
在ubuntu中试了ibus的中文拼音输入法,感觉还不错,比较稳定,决定在fedora 17 中也用ibus的拼音输入法。一般Linux中都带有ibus输入工具,我们只需要对它进行设置添加安装输入法即可。在fedora 17的桌面依次点击【Activities】->【Applications】,然后点击右边列表下面的【Other】,接着选择【Input Method Selector】,会原创 2012-07-20 23:43:54 · 3163 阅读 · 0 评论 -
在Linux下telnet Windows
装一个 rdesktop-1.4.1-3.2.1.src.rpm 就可以在linux下远程管理windows在终端里输入rdesktop -f -a 16 加要访问的windows系统的 IP 地址 sudo yum installrdesktoprdesktop -f -a 16 127.0.0.1存在的问题:在进入windows界面后回到linu原创 2012-07-17 17:52:24 · 2329 阅读 · 0 评论 -
VirtualBox 共享文件夹设置(图文教程,无命令)
原文标题:VirtualBox 共享文件夹设置(图文教程,无命令)原文地址:http://www.ludou.org/virtualbox-sharedfolder.html 鉴于支付宝等服务无视我们Linux用户的存在,没办法,那只好在Linux上用VirtualBox虚拟一个Windows系统了。系统装好了,在日常使用过程中,往往要从VirtualBox的客户机(gues转载 2012-06-28 22:51:16 · 2185 阅读 · 0 评论 -
Fedora 16 安装 Mp3和视频播放器
安装命令如下:1.添加软件源# rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stab原创 2012-06-23 13:41:42 · 2579 阅读 · 0 评论 -
vi/emacs/shell 搜索文件中的特定字符串
1.如何在某一目录及其子目录下查找含有特定字符串的所有文件?grep -rl "string" /pathOrfind /path -type f -exec grep -l "string" {} \;2.如何在某一目录及其子目录下查找含有特定字符串的所有记录行?find . -name "*.txt" -print | xargs grep -n "he转载 2012-05-10 19:19:12 · 1203 阅读 · 0 评论 -
tar用法实例
tar用法实例 tar命令 tar 文件是几个文件和(或)目录在一个文件中的集合。这是创建备份和归档的佳径。 tar 使用的选项有: -c — 创建一个新归档。 -f — 当与 -c 选项一起使用时,创建的 tar 文件使用该选项指定的文件名;当与 -x 选项 一起使用时,则解除该选项指定的归档。 -t — 显示包括在 tar 文件中的文件列表。 -转载 2012-05-04 17:10:28 · 494 阅读 · 0 评论 -
Fedora 16 自定义开机运行脚本
fedora16不对rc.local支持,其实只是删除了rc.local文件,如果想在开机时能够运行自己写的脚本,只要新建rc.local文件就可以了,下面让我们来测试下吧:环境:fedora16 gnome桌面1./etc/rc.local其实是/etc/rc.d/rc.local的软连接,那么:注意:rc.local文件的第一行要加上#!/bin/sh原创 2012-02-28 01:26:22 · 1399 阅读 · 0 评论 -
Linux 禁用和启用触摸板
sudo yum -y install xorg-x11-appsxinput listxinput list-props "SynPS/2 Synaptics TouchPad" //引号中的名字因设备而异#禁用xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Enabled" 0#恢复xinput --set-prop原创 2012-02-29 14:56:13 · 1191 阅读 · 0 评论 -
linux shell 分支语句
#!/bin/sh# testecho -n "are you sure to delete these files?"read ANScase $ANS iny|Y|yes|Yes) rm a.txt ;;n|N|no|No) exit 0 ;;esac原创 2012-02-29 14:40:44 · 710 阅读 · 0 评论 -
Fedora 16 添加最大化,最小化按钮
1、安装gnome-tweak-tool和gconf-editor。2、按住Alt+F2输入gconf-editor,然后在/desktop/gnome/shell/windows/button_layout添 加:minimize(最小化),maximize(最大化),close(关闭),根据自己的需要添加,然后点确定保存。3、再次按住Alt+F2,输入r,重启gnome-shell,就原创 2012-01-30 09:22:26 · 1432 阅读 · 0 评论 -
linux下截图工具
scrot是linux下小巧而实用的截图工具,它采用基于命令行的工作方式。使用起来很方便。以ubuntu为例介绍scrot的使用方法安装: sudo apt-get install scrot1.抓取整个桌面: scrot pic1.jpg #此命令将抓取整个桌面,并且生成名字为pic1.jpg的截图保存在当前目录下2.原创 2011-12-14 09:14:25 · 1151 阅读 · 0 评论 -
Linux Tomcat 下的项目局域网中访问不了
原文连接:http://flashdream8.iteye.com/blog/10552621.在自己虚拟机的centos系统的tomcat下发布了一个程序,在虚拟机上用 http://localhost/xxx 和 http://172.16.1.160/xxx 可以访问,但是在 局域网中用 http://172.16.1.160/xxx 访问不了-------转载 2012-08-22 13:33:51 · 2631 阅读 · 0 评论