美文网首页
【系统】Debian 笔记

【系统】Debian 笔记

作者: 苏尚君 | 来源:发表于2016-04-19 13:41 被阅读448次

Debian GNU/Linux 8 (jessie) 64-bit

硬盘管理相关

分区方案

  1. 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

中文字体支持

参考下述几篇文章:

备用参考:

参考资料


  1. KDE

  2. 网易开源镜像

  3. 网易 Debian 镜像使用帮助

  4. Linux分区方案、文件结构与挂载

  5. How to fix dpkg-buildpackage: command not found? [duplicate]

  6. How do I install a .deb file via the command line?

相关文章

网友评论

      本文标题:【系统】Debian 笔记

      本文链接:https://www.haomeiwen.com/subject/ooaalttx.html