Debian GNU/Linux 8 (jessie) 64-bit
硬盘管理相关
分区方案
-
160421
:
- '/':30 GB
-
swap
:20 GB -
/home
:100 GB
逻辑卷管理
参见 LVM
图形界面相关
安装 KDE
在安装了 GNOME 之后,如何安装 KDE?
命令行输入[1]
$ su
$ apt-get install kde-standard # kde-standard 是标准/上游版本
KDE 技巧
- [Run command] Alt + F2
如何卸载不需要的图形界面管理器
我安装了几乎所有的图形界面后,一一尝试,发现自己不喜欢 GNOME classic 以外的图形界面。那么,如何卸载掉其他的图形界面管理器呢?
。。。
switch among desktop-mangers
$ sudo /usr/sbin/dpkg-reconfigure gdm3
or use kdm
use whereis dpkg-reconfigure
can find the path
apt 源的更新
更新镜像
这个版本(160402 更新)的 Debian 不知是不自带官方源,还是官方源不可用,例如 vim 或者 RIME 都下载不了。总之需要手动修改更新源。
搜索 debian mirror
即可找到许多更新可用镜像。例如网易镜像[2]。
参考网易镜像下的 Debian 镜像使用帮助[3],下载对应的 sources.list
并替换已有的包含更新源地址的文件 /etc/apt/sources.list
(或者直接编辑该文件亦可)。
备份如下:
deb http://mirrors.163.com/debian/ jessie main non-free contrib
deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
or use aliyun, source list like
# /etc/apt/sources.list
# deb cdrom:[Debian GNU/Linux 8.4.0 _Jessie_ - Official amd64 DVD Binary-1 20160402-14:46]/ jessie contrib main
deb cdrom:[Debian GNU/Linux 8.4.0 _Jessie_ - Official amd64 DVD Binary-1 20160402-14:46]/ jessie contrib main
# Line commented out by installer because it failed to verify:
#deb http://security.debian.org/ jessie/updates main contrib
# Line commented out by installer because it failed to verify:
#deb-src http://security.debian.org/ jessie/updates main contrib
# Alibaba Open Source Mirror Site, from: http://mirrors.aliyun.com/help/debian
deb http://mirrors.aliyun.com/debian/ jessie main non-free contrib
deb http://mirrors.aliyun.com/debian/ jessie-proposed-updates main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ jessie main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ jessie-proposed-updates main non-free contrib
添加 PPA 源
在 Terminal 中输入下述命令[4]
$ sudo apt-get install software-properties-common
$ sudo apt-add-repository ppa:linux-deepin-team/linux-deepin
软件安装相关
dpkg deb-package
dpkg-buildpackage
到 http://packages.debian.org/ 底部 Search the contents of packages ,选好自己的 Distribution(例如我是 stable) 和 Architecture(例如我是 64-bit PC(amd64)) 搜索关键字 dpkg-buildpackage
,找到对应的包的名字,下载即可(例如我是 dpkg-dev
)[5]
安装软件包 .deb[6]
$ sudo dpkg -i DEB_PACKAGE_NAME.deb
卸载软件包[6]
$ sudo dpkg -r PACKAGE_NAME
使用 aptitude 安装/卸载
安装依赖包
root# aptitude build-dep pakage_name
搜索
$ aptitude search pakage_name
卸载
使用 apt-get remove
只卸载软件包,使用 apt-get purge
则除了卸载软件包外,还将个人配置移除
What is the Difference Between apt-get purge
and apt-get remove
? [duplicate]
用户权限相关
如何使用户 username 获取 root 权限(可以执行 sudo
命令)?
键入下述命令
$ su
$ visudo
在打开的文件中找到这一行
# User privilege specification
root ALL=(ALL:ALL) ALL
修改为如下内容,保存并退出即可
# User privilege specification
root ALL=(ALL:ALL) ALL
username ALL=(ALL:ALL) ALL
中文字体支持
参考下述几篇文章:
- 令 Debian 支援中文及其他语言:看「安装字型」
-
debian添加中文支持:
dpkg-reconfigure
配置 -
dpkg-reconfigure: not found when running in cron:
dpkg-reconfigure
在/usr/sbin/
下
备用参考:
- 如何在Debian下快速安装中文字体--野火兔的窝
- debian用什么命令安装字体
- ChangeLanguage- How to change the language of your Debian system
网友评论