河曲智叟 发表于 2025-4-19 21:00:04

xubuntu 14.04常用设置和软件安装条记

##############################################
最初设置

##############################################
进入系统设置页面的“软件和更新”,勾选“Canonical 为合作伙伴打包的软件”
然后实行如下语句:
sudo apt-get update;sudo apt-get upgrade;sudo apt-get install aptitude

[*]关闭guest session(lightdm guest session)
sudo bash
lightdmCfgPath=/etc/lightdm/lightdm.conf.d
if [ ! -d $lightdmCfgPath ]; then sudo mkdir -p $lightdmCfgPath ;fi
if [ ! -s $lightdmCfgPath/50-my-custom-config.conf ]; then
sudo touch $lightdmCfgPath/50-my-custom-config.conf
;fi
sudo sh -c "cat$lightdmCfgPath/50-my-custom-config.conf

allow-guest=false
EOF"
exit
设置开机默认70%亮度:

使用xbacklight工具,普通用户不使用sudo也可以调节亮度,下面是安装的命令:
sudo apt-get install xbacklight
然后在“所有设置”--“会话和启动”中增加一个命令,命令为“xbacklight -dec 30”。
这样设置后,开机输入密码登录后,亮度会自动变成70%。
其中xbacklight -dec 30表示亮度减小30%
亮度调节插件(安装后在面板中加上即可,加上后显示的名称为xfce4-brightness-plugin)

sudo apt-get install xfce4-power-manager-plugins
################################
安装常用工具

###############################
font

sudo apt-get install fonts-wqy-microhei
fcitx输入法平台和google拼音、二笔输入法

sudo apt-get install fcitx fcitx-googlepinyin fcitx-table-erbi
安装unrar\zip\7z等压缩软件

sudo apt-get install p7zip-full unrar-free unzip
安装office

sudo apt-get install libreoffice libreoffice-l10n-zh-cn
安装wiznote为知条记

sudo add-apt-repository ppa:wiznote-team; sudo apt-get update ; sudo apt-get install wiznote
gedit for detect encode

sudo apt-get install gedit
uget for download files(可以手工在uget中启用aria2插件)

sudo apt-get install aria2 uget
Remmina(远程桌面工具)

sudo apt-get install Remmina
linux版飞秋

sudo apt-get install iptux
安装农历(必须先安装libqt4-sql-sqlite,否则会提示Driver not loaded Driver not loaded)

sudo apt-get install libqt4-sql-sqlite chinese-calendar
手工安装flash插件(xubuntu 14.04)

flashversion=11.2.202.451
flashfilename=install_flash_player_11_linux.i386.tar.gz
if [ -s$flashfilename ]; then
echo "$flashfilename fount !"
else
wget http://fpdownload.macromedia.com/get/flashplayer/pdc/$flashversion/$flashfilename
fi
tar zxvf $flashfilename
flashpath=/usr/local/flashplayer
firefoxpluginpath=/usr/lib/firefox/browser/plugins
if [ ! -d $flashpath ]; then sudo mkdir -p $flashpath ;fi
if [ ! -d $flashpath/plugins ]; then sudo mkdir -p $flashpath/plugins ;fi
sudo mv libflashplayer.so $flashpath/plugins/
sudo cp -r usr/* /usr
rm -rf usr/
sudo mv readme.txt $flashpath/plugins/
link to firefox plugins path

sudo ln -s $flashpath/plugins/libflashplayer.so $firefoxpluginpath/libflashplayer.so
使用aptget安装flash插件的方法

sudo apt-get remove flashinstaller; sudo apt-get install adobe-flashplugin adobe-flash-properties-gtk
安装更新chrome时候,需要的获取到下载地点的时候:

sudo apt-get --print-uris install google-chrome-stable
chrome的国内镜像


sudo sh -c "cat
页: [1]
查看完整版本: xubuntu 14.04常用设置和软件安装条记