debian 9 安装后需做的几件事
安装环境:X86 >> Debian 9 Linux/GNU
apt源更新
注意连上有线网络
刚安装好的debian系统中,/etc/apt/sources.list
包含了本地软件仓库的源,可以预先下载好官方的所有DVD光盘数据,安装好后自己根据网络教程搭建本地仓库安装/更新软件。这里以使用网络源为实例,说明在能连接网络的情况下安装/更新软件包。
注释原来的源信息,添加debain 9的源。
# 163
deb http://mirrors.163.com/debian/ stretch main
deb http://mirrors.163.com/debian/ stretch-updates main non-free contrib
deb-src http://mirrors.163.com/debian/ stretch-updates main non-free contrib
deb http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib
deb http://httpredir.debian.org/debian stretch-backports main contrib non-free
# VirtualBox
deb http://download.virtualbox.org/virtualbox/debian stretch contrib
更新软件
# aptitude update && aptitude dist-upgrade
时间同步/时区更改/本地化
# apt-get install ntpdate -y # 安装时间同步软件
# ntpdate time.windows.com # 同步时间
# dpkg-reconfigure tzdata # 更改时区
# apt-get install locales
# dpkg-reconfigure locales # 本地化设置
参考 Debian时间同步
vim vim-gtk
# apt-get install vim vim-gtk
输入法fcitx
安装
# apt-get install fcitx fcitx-tools fcitx-config* fcitx-frontend* fcitx-module* fcitx-ui-* presage
# apt-get remove fcitx-module-kimpanel # 移除多余的组件
# apt-get install fcitx-pinyin # 拼音
# apt-get install fcitx-sunpinyin # sun拼音
# apt-get install fcitx-googlepinyin # google拼音
# apt-get install fcitx-table-wubi-large # 五笔
配置
创建文件:/etc/X11/Xsession.d/95im_init(文件名95im_init貌似可以随意)
export LANG=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8
export XMODIFIERS=@im=fcitx
fcitx &
注意:这里的变量LANG
与参考中的有些区别,主要是设置成中文翻译有些翻译看上去不是很好.
gnome-tweak-tool桌面管理工具
控制桌面窗口/鼠标等的特性,给你一个更美更人性化的桌面体验。
# apt-get install gnome-tweak-tool
音乐软件
网易云音乐
视频播放器
# apt-get install mpv mplayer
视频录制软件
截图软件 shutter
# apt-get install shutter
latex
方便编辑文本文档,然后生成PDF
TeX Live 下载及安装说明
texlive2015-6安装
conky
用于显示磁盘监控信息,不错的美化工具。
# apt-get install conky
VirtualBox
虚拟windows操作系统,便于测试或者使用一些小工具。
ubuntu下virtualbox的安装、卸载
Rdesktop
方便远程连接windows/Linux
# apt-get install rdesktop
samba
方便访问windows共享盘
安装
# apt-get install samba-client
配置:使用
share_space.sh
脚本连接windows共享盘
#!/bin/bash
# file name: share_space.sh
mount -t cifs -o username=login_win_user,password=yourpasswd //192.168.1.22/Public /mnt/Exchange/
# //192.168.1.22/Public 为共享盘网络路径
# /mnt/Exchange/ 为挂载的位置
绘图工具dia(取代visio)
强大的绘图功能
# apt-get install dia
固定IP地址
修改IP配置
查看网卡名字
# apt-get install libnet-ifconfig-wrapper-perl # 安装工具,若没有 ifconfig 命令
# ifconfig # 查看网卡信息
上图可以看出,网卡名为enp2s0
接下来,修改/etc/network/interfaces
,添加如下内容(注意,不要添加中文注释,有可能影响启动)
auto enp2s0
iface enp2s0 inet static
address 192.168.100.38
netmask 255.255.255.0
gateway 192.168.100.1
修改DNS
apt-get install resolvconf
编辑 /etc/resolvconf/resolv.conf.d/head
nameserver 8.8.8.8
nameserver 8.8.4.4
重载
resolvconf -u
重启网卡
/etc/init.d/networking restart
参考资料
[1].Ubuntu安装Fcitx以及Fcitx输入中文不显示候选词框的解决办法
[2].texlive2015-6安装
[3].ubuntu下virtualbox的安装、卸载
[4].Linux怎样访问Windows共享文件和文件夹
[5].Debian时间同步
[6].Debian中文输入法fcitx总结
[7].Debian 桌面美化
[8].Debian DNS resolv.conf 重启失效/复写
形而上者谓之道 形而下者谓之器。
更多推荐
所有评论(0)