您正在查看 "Ubuntu Linux" 分类下的文章
2008年07月13日 星期日 21:15
A: super键就是你的win键,一般在ctrl和alt之间。找到 系统-首选项-键盘-布局选项-Alt/Win键行为,将“super键被映射到windows键”钩上。 |
2008年01月25日 星期五 21:52
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
#
|
2007年10月19日 星期五 20:54
# menu.lst - See: grub(8), info grub, update-grub(8)
# grub-install(8), grub-floppy(8),
# grub-md5-crypt, /usr/share/doc/grub
# and /usr/share/doc/grub-doc/.
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry numbe |
2007年10月19日 星期五 17:04
2007年08月29日 星期三 08:00
dd
1.作用
dd命令用来复制文件,并根据参数将数据转换和格式化。
2.格式
dd [options]
3.[opitions]主要参数
bs=字节:强迫 ibs=<字节>及obs=<字节>。
cbs=字节:每次转换指定的<字节>。
conv=关键字:根据以逗号分隔的关键字表示的方式来转换文件。
count=块数目:只复制指定<块数目>的输入数据。
ibs=字节:每次读取指定的<字节>。
if=文 |
2007年08月27日 星期一 20:20
1. 执行备份操作:
dpkg --get-selections > installed-software.log
这将当前系统中已安装的软件保存到 installed-software.log 中。
2. 在还原时使用
dpkg --set-selections < installed-software.log
导入软件列表,再利用 dselect 工具安装软件。
dselect 教程
http://debian.linuxsir.org/book/dselect-beginner/lyoo/ch-main.html |
2007年08月27日 星期一 15:35
<fontconfig>
<alias>
<family>serif</family>
<prefer>
<family>Bitstream Vera Se |
2007年08月26日 星期日 21:20
先进入livecd
终端》》sudo su
mkdir /mnt/root
mount -t ext3 /dev/sda2 /mnt/root
这样把UBUNTU挂载到了mnt/root里。 |
2007年08月25日 星期六 08:28
安装gstreamer的解码器
sudo apt-get install gstreamer0.10-pitfdll gstreamer0.10-ffmpeg gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse
安装xine及解码器
sudo apt-get install libxine-extracodecs totem-xine ffmpeg lame faad sox mjpegtools libxine-main1
安装w32codecs
http://www. |
2007年08月25日 星期六 00:07
2007年08月24日 星期五 21:37
那源老不更新 只好换了它
删除它
sudo apt-get --purge remove compiz* libcompizconfig*
该源
sudo gedit /etc/apt/sources.list
添加你需要的源
sudo apt-get update && sudo apt-get dist-upgrade
sudo apt-get install compiz compizconfig-settings-manager
|
2007年08月22日 星期三 20:09
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf(5) manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xor |
2007年08月21日 星期二 21:41
在ubuntu 一般的字体都保存在
1。 ~/.fonts
2。 /usr/local/share/fonts/
3。 /usr/share/fonts/
修改
sudo gedit /etc/fonts/language-selector.conf
在里面的这三个
<family>Bitstream Vera Serif</family>
<family>Bitstream Vera Sans</family>
<family>Bitstream Vera Sans Mono</family |
2007年08月21日 星期二 10:51
BMPx is now in Debian official:
$ sudo apt-get update $ apt-cache search bmpx bmpx-dev - BMPx development static library and header files bmpx - Beep Media Player eXperimental $ sudo apt-get install bmpx
|
2007年08月19日 星期日 14:24
sudo apt-get install python-mutagen
使用方法:
mid3iconv -e gbk *.mp3
如果想转换当前目录下的所有 mp3 (包括子目录):
find . -iname "*.mp3" -execdir mid3iconv -e gbk {} \; (注意这个分号;不能去掉)
删除 ID3v1 标签
mid3iconv -e gbk --remove-v1 *.mp3
find . -iname "*.mp3" -execdir mid3iconv -e gbk--remove-v1*.mp3 {} \;
|
|
|