debian10安装后基础环境搭建

debian10安装后基础环境搭建In GNOME, go to: Activities > List Applications > all > Oracle

欢迎大家来到IT世界,在知识的湖畔探索吧!

debian10换源

debian安装之后,默认的源是一个CD盘,一般都没有,如果不修改源,你什么软件都无法安装, 就算是本地的deb包都没法安装,所以第一件事就是联网,换源,网线的话,插上就能用,笔记本wifi驱动需要自己先安装。

gnome桌面环境默认文本编辑器为gedit,xfce4默认编辑器为mousepad。
想编辑哪个文件,使用sudo gedit 文件名或者sudo mousepad 文件名,或者使用vim 文件名都可以,会用什么就用什么。

清华镜像源:清华镜像源

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free

deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free

欢迎大家来到IT世界,在知识的湖畔探索吧!

把上面这段内容写入/etc/apt/source.list里面,保存,原有的可以备份,也可以在所有行前面加#注释就行,如果已经有#注释,就不用加了。

然后更新源,

欢迎大家来到IT世界,在知识的湖畔探索吧!apt update #root账户下,普通用户需要加sudo

debian10使用sudo

默认用户是无法使用sudo的,需要添加用户到sudo的权限里面。
打开文件/etc/sudoers:找到 User privilege specification,一开始默认只有root,在root下增加一行,第一个写上用户名,后面照抄,保存,这个用户就可以使用sudo命令了。

# User privilege specification
root	ALL=(ALL:ALL) ALL
ryze  	ALL=(ALL:ALL) ALL

debian10安装wifi驱动

笔记本安装debian的时候,可能没有安装wifi驱动,然后开机之后没法上网,直接插网线是可以上网的,如果没有网线,手机USB线连接电脑,然后用USB共享网络,这时候USB就相当于一条网线了,可以直接上网。

然后需要安装wifi驱动,百度搜搜debian wifi,进入Debian — 软件包下载地址选择,点击Asia下的任意第一个:

http://ftp.cn.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20210315-3_all.deb

然后就下载到deb包,使用sudo dpkg -i deb包安装wifi驱动,然后重启电脑。重启之后就可使用wifi。

备份系统

最好现在开始备份系统,因为基本的功能,上网打字已经有了,现在是最干净的,继续安装软件有可能会崩,不想重装的话可以先备份一下,弄坏了直接还原,不用重装系统。

新建一个backup.sh脚本文件,写入如下内容:

欢迎大家来到IT世界,在知识的湖畔探索吧!#!/bin/bash
cd /
tar -cvpzf linux_backup.tgz --exclude=/proc --exclude=/mnt --exclude=/lost+found --exclude=/sys --exclude=/media --exclude=/run --exclude=/linux_backup.tgz --exclude=/backupsh.sh --exclude=/home /

tar -cvpzf,是打包命令。
linux_backup.tgz是打包后的文件
–exclude=文件夹这个是排除等号后面的文件,不备份这些文件。
最后一个/就是打包的目录,/是根目录,linux系统就是一堆文件,所有文件都是从根目录/开始。排除的文件夹中,除了home目录可以打包,上面排除的文件夹都是没有必要打包的,可以自行百度看那些文件夹是什么意思。

这个脚本复制到根目录/下。然后注销登录,来到登录界面,按alt+F1-7中的任意一个,比如alt+F1,进入终端登录界面,输入root回车,输入密码。
登录成功之后,用cd命令进入根目录;

cd /

然后运行脚本:

./backup.sh

等待打包完成。

然后按alt+F1-7中的一个,不知道是哪一个,自己试,1-7中有一个是图形界面,有时候登录的都不一样,但都在alt +F1-7中,把刚才打包好的tgz文件,复制到你的硬盘上,就可以了。

  • 还原
    如果不小心弄坏系统,还原的时候,和刚才一样用终端登录,然后解压到根目录就行。

debian10安装搜狗输入法

1.在搜狗输入法官网下载.deb包。

2.用sudo dpkg -i xxxx.deb安装。

3.直接安装会报错,有依赖问题,在报错之后:

sudo apt intall -f

自动安装依赖,然后再使用sudo dpkg -i xxxx.deb安装。这时就安装成功了。

然后重启。debian 重启需要使用systemctl reboot,不能直接用reboot.

安装虚拟机virtualBox。

虚拟机肯定是必备的,不用折腾太多搞wine,直接虚拟机,节省时间。

debian10安装virtualbox不能直接从官方源添加,需要从非官方源安装,如果你直接下载deb包,安装完成之后,可能会无法正常使用。

非官方源参考:debian-wiki-Virtualbox

如下:

  1. Add virtualbox.list to /etc/apt/sources.list.d
deb http://download.virtualbox.org/virtualbox/debian buster contrib
  1. Add Oracle VirtualBox public key:
wget https://www.virtualbox.org/download/oracle_vbox_2016.asc
sudo apt-key add oracle_vbox_2016.asc
  1. Install virtualbox-6.1
sudo apt-get update
sudo apt-get install virtualbox-6.1

安装完之后:

In KDE, go to: KDE menu > System > Oracle VM VirtualBox

In GNOME, go to: Activities > List Applications > all (super + A) > Oracle VM Virtualbox

In Mate, go to: Mate menu > Applications > System tools > Oracle VM VirtualBox

In Xfce, go to: Application > System tools > Oracle VM VirtualBox

From an X terminal:

virtualbox

# Or

VirtualBox

安装Guest Addition

Debian 10 “Buster”

There is no package for guest additions for Debian Buster in the repositories. In order to install the pre-requisites to build the guest-additions from the virtualbox guest additions iso. By following these instructions:

  1. The approriate kernel headers and build tools:
sudo apt install build-essential dkms linux-headers-$(uname -r)
  1. Mount the guest additions iso and copy VBoxLinuxAdditions.run from the iso’s location to your home folder.
  2. Open a terminal and execute the following commands to install the guest additions:
sudo chmod +x ./VBoxLinuxAdditions.run
 sudo ./VBoxLinuxAdditions.run
  1. Reboot the system and the virtualbox guest additions should be installed

安装FSearch

脚本:FSearch_install.sh

sudo add-apt-repository ppa:christian-boxdoerfer/fsearch-daily
sudo apt update
sudo apt install fsearch-trunk

add-apt-repository 命令是software-properties-common包的一部分,如无法使用,安装这个包就OK了

sudo apt-get install software-properties-common
sudo apt-get update

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/36842.html

(0)

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们YX

mu99908888

在线咨询: 微信交谈

邮件:itzsgw@126.com

工作时间:时刻准备着!

关注微信