先安装前端
file-roller
再安装核心软件
sudo emerge unrar p7zip rar
轻量级图片浏览器
sudo emerge gpicview
截图工具
emerge scrot…
先安装前端
file-roller
再安装核心软件
sudo emerge unrar p7zip rar
轻量级图片浏览器
sudo emerge gpicview
截图工具
emerge scrot…
分区情况:
sda8 /swap 2G
sda9 /boot 100M
sda10 /home 8G
sda11 / 17G
这次重新安装gentoo桌面选择了gnome-light,安装过程基本上顺利,
安装完之后,进入系统,欢迎界面很简单,只有一个登录框。
先是修改字体
http://zh.gentoo-wiki.com/index.php?title=HOWTO_%E5%A2%9E%E5%8A%A0%E5%AD%97%E4%BD%93&variant=zh-cn
之后设置firefox字体。
安装ntfs3g
安装usb自动挂载支持
http://zh.gentoo-wiki.com/index.php?title=HOWTO_%E8%87%AA%E5%8A%A8%E6%8C%82%E8%BD%BDUSB%E7%A7%BB%E5%8A%A8%E7%A1%AC%E7%9B%98%E5%B9%B6%E6%98%BE%E7%A4%BA%E4%B8%AD%E6%96%87&variant=zh-cn
安装输入法fcitx
不知为什么 pre070703版的编译不成功,只能选择默认的版本了。
http://zh.gentoo-wiki.com/index.php?title=HOWTO_%E4%B8%AD%E6%96%87%E8%BE%93%E5%85%A5%E6%B3%95&variant=zh-cn
设置locale以在英文环境下使用中文输入法
http://zh.gentoo-wiki.com/index.php?title=HOWTO_%E4%B8%AD%E6%96%87%E8%BE%93%E5%85%A5%E6%B3%95%E7%94%A8%E4%BA%8E%E8%8B%B1%E6%96%87%E7%95%8C%E9%9D%A2&variant=zh-cn
安装stardict
安装pidgin
安装媒体播放器
mplayer,realplayer,audacious
安装文字编辑器
gedit
安装永中office
安装VirtualBox
安装gconf-editor
安装sun-jdk
安装gnome默认的PDF阅读器evince
gnome-light很简单, 要什么东西就装什么,很自由。…
Gentoo修改文件默认编辑器 | |
|
[Gentoo]Clean up world file | |
|
先下载源码:新出的0.4.0版
http://lianwei3.googlepages.com/home2
参考里面的INSTALL
./configuration
make&&make install
在/usr/local/ bin中
ls /usr/local/bin/
drcomc drcomd gsopcast .keep sp-sc
下载sp-sc解压cp到/usr/local/bin就可以了
频道地址填
http://202.71.98.177/gchlxml
以前将列表下到本地,用自己的FTP也可以,不知道为什么,这个新版本不行!~~!
root不能直接启动,要将gsopcast ln到/sbin中
ln -s /usr/local/bin/gsopcast /sbin…
源里的fcitx版本太低了,要安装fcitx3.5时要unmask
如果没有autounmask请先emerge autounmask
autounmask app-i18n/fcitx-3.5_pre070703
然后再emerge fcitx
如果不能正常显示中文
需要添加USE=“truetype”…
Gentoo下emerge用法
避免升级覆盖掉版本更高的软件
emerge -uU world
emerge –update –upgradeonly world
查找名称包含mozilla的包
emerge -s mozilla
emerge search mozilla
查找描述包含mozilla
emerge -S mozilla
emerge –searchdesc mozilla
使用本地编好的包,没有就下源码(尽量避免编译)
emerge -k mozilla
emerge –usepkg mozilla
只使用本地编好的,否则不安装(绝对不编译,所有依赖的包都有binary才装)
emerge -K mozilla
emerge –usepkgonly mozilla
卸载
emerge -C …
cat /etc/X11/xorg.conf
# 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 …
要让audacious能够播放mp3需要加入mp3 wma wmv mpd USE
其中mpd很重要如果没有mpd USE就不能播放mp3了
USE=”mp3 wma wmv mpd” emerge audacious
安装mplayer
cat emergemplayer.sh
#!/bin/sh
USE=”aac real win32codecs -ipv6″ emerge mplayer
emerge mplayerplug-in
如果双击提示找不到文件时,
将Exec=gmplayer %U改为
Exec=gmplayer %f或者去掉%U
cat /usr/share/applications/mplayer.desktop
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=MPlayer
GenericName=Multimedia player
Comment=Multimedia …
在ubuntu上安装drcom很简单
只要make&&make install就行了
但在gentoo却遇到了很多问题 ,先是不能编译,少了什么变量,security_ops,然后到网上搜,好不容易找到了一个解决方法,(当时我的内核是2.6.22,后来才更新到2.6.24)
在网友zrx550 http://hi.baidu.com/z%5Fr%5Fx那看到这篇文章
----------
linux下的drcom是在2.6的内核中开发的,用到了<linux/security.h>中的security_ops。>但是这个 EXPORT_SYMBOL 在2.6.24的内核中被取消了,导致drcom不能被成功的编译。随之
而来的问题就是新内核在需要drcom的网络环境中不能上网了。就这个问题我请教了开源版>本drcom开发者之一的Wheelz。目前最简单的办法只能修改内核,重新编译。针对2.6.24的>内核,具体办法如下:
1) 在内核的security/security.c文件的最后加上EXPORT_SYMBOL(security_ops);
2) 重新编译一下内核。
3) drcom-1.3.7/kmod/proto.c在#include <linux/security.h>后面加上一句:
extern struct security_operations *security_ops;
4)编译安装drcom。
但却始终不起作用,编译了好几次内核,始终没用,后来在.config 中加入
先 grep SECURITY .config 然后vim .config
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
前几次编译都不成功,好像编译时重新配置内核,立马^C,
然后又一次次偿试,终于可以了。
到这里我发现了一个问题,一般情况了我重新编译内核都不会
make clean 而这次编译了7分钟,所以我觉得它应该将内核重新编译了一遍,以前编译时只要很短的时间,特别是改动很少的时候,因为它没有全部重新编译,只是编译了那些配置改变了的部分,而当它们的依赖关系比较严重时,系统就会自动全部重新编译,所以以后当内核改0动比较大时,最好先make …