命令行下mplayer 加载字幕乱码
解决方法:
mplayer
修改~/.mplayer/config
font=/usr/share/fonts/TTF/uming.ttf subcp=cp936
可以使用下面的命令手动加载字幕
mplayer xxx.avi -sub xxxxx.srt
Linux单网卡绑多IP以及多网卡共用单IP
1、单网卡绑定多IP在Redhat系列中的实现方法
假设需要绑定多IP的网卡是eth0,请在/etc/sysconfig/network-scripts目录里面创建一个名为ifcfg-eth0:0的文件,
内容样例为:
DEVICE=”eth0:0″
IPADDR=”192.168.0.2″
BROADCAST=”172.168.0.255″
NETMASK=”255.255.255.0″
ONBOOT=”yes”
其中的DEVICE为设备的名称,
IPADDR为此设备的
BROADCAST是
NETMASK为子网
ONBOOT 表示在系统启动时自动启动。
如果需要再绑定多一个IP地址,
只需要把文件名和文件内的DEVICE中的eth0:x加一即可。
LINUX最多可以支持255个IP别名
2、普遍适用的单网卡绑定多IP实现方法
ifconfig eth0:1 192.168.0.3 broadcast 192.168.0.255 netmask 255.255.255.0
可以把上述命令加在启动自运行文件里面,在Gentoo下是/etc/conf.d/local.start,而某些版本的Linux是/etc/rc.d/rc.local。
3、多网卡共用单IP的实现方法
使用多块网卡虚拟成为一块网卡,具有相同的IP地址。这项技术其实在sun和cisco中已经存在,分别称为Trunking和 etherchannel技术,在linux中,这种技术称为bonding。因为bonding在内核2.4.x中已经包含了,只需要在编译的时候把网 络设备选项中的 Bonding driver support选中就可以了。
然后,重新编译核心,重新起动计算机,执行如下命令:
ismod bonding
ifconfig eth0 down
ifconfig eth1 down
ifconfig bond0 ipaddress
ifenslave bond0 eth0
ifenslave bond0 eth1
现在两块网卡已经象一块一样工作了,这样可以提高
你最好把这几句写成一个脚本,再由/etc/rc.d/rc.local或者/etc/conf.d/local.start调用,以便一开机就生效。
统计文件大小
du -sh ./* | sort -rn
du 的 -s 参数会告诉 du 只打印出每个文件或目录的总大小而不要递归的把目录下所有文件的大小打印出来,,./* 当前目录。然后再传给 sort,-n 为按照数字排序,-r 为逆序显示,这样最大的文件或者目录就列在前面了~
来自:http://linuxgem.is-programmer.com/2008/9/21/how-to-check-disk-usage.5484.html
mplayer 编译安装
本文推荐去 mplayer 的官方站下载最新版本.另外 mplayer 是一个媒体播放器,所有的多媒体文件都需要解码器,比如常见的 mp3 文件。mplayer 除了使用自己的解码器外,如果您还需要播放 windows 下的多媒体文件还需要 windows 下的解码器。所以我们要从 http://www.mplayerhq.hu/下载如下文件。ftp2.mplayerhq.hu/MPlayer/releases/ 这里也有下载,包括mplayer 解码器包和mplayer windows 解码器包
Fluxbox的一些主题
上面这个主题地址:http://box-look.org/content/show.php/PARANA?content=85520
http://browse.deviantart.com/customization/skins/themes/fluxbox/
Vitetris -- 控制台下的俄罗斯方块
Vitetris 的主页: http://www.victornils.net/tetris/
文章来自:http://linuxgem.is-programmer.com/2008/1/9/Vitetris-terminal-based-Tetris-clone.4985.html
呵呵 先收藏之
vsftp 安装配置
1. 直接去vsftpd网站(ftp://vsftpd.beasts.org/users/cevans/)下载最新的tar.gz格式源码包
Linux Mint 6 “Felicia” released!
Based on Ubuntu 8.10 Intrepid Ibex, Linux 2.6.27, Gnome 2.24 and Xorg 7.4, Linux Mint 6 “Felicia” comes with a brand new “Software Manager”, FTP support in mintUpload, proxy support and history of updates in mintUpdate, mint4win (a Windows installer), tabbed browsing in Nautilus and a lot of other improvements.
这个东东用着比较好,呵呵 推荐下
实战Ubuntu下单网卡绑定多IP
常常我们有需要一个网卡象windows一样设置多个IP。
下面我们看看在ubuntu下怎么样做.
我们先打开网络接口的文件
sudo gedit /etc/network/interfaces
照上边eth0添加eth0:0
auto eth0
iface eth0 inet static
name Ethernet Lan card
address 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
auto eth0:0
iface eth0:0 inet static
name Ethernet
address 192.168.1.2
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
重启服务
sudo /etc/init.d/networking restart
测试新的ip地址是否生效
ping 192.168.0.1
ping 192.168.0.2
Unexpected inconsistency run fsck MANUALLY798295477
这是由于系统非正常关机引起的
运行:e2fsck -c /dev/hda
类似于windows中的scandisk
//////////////////////
我的是Fedora8,今天启动是出现问题,提示如下
checking filesystem
/: unexpected inconsistency;RUN fsck MANUALLY
An error occurred during the filesystem check
Propping you to shell the system will reboot
when you leave the shell
Give root password for mantennance
问题很简单,磁盘出了毛病,解决方法如下