xiaoliuzi / user_demo

1 stars 0 forks source link

Changing OS to Debian 8 #8

Closed xiaoliuzi closed 8 years ago

xiaoliuzi commented 9 years ago

从Win8.1等换到debian8

xiaoliuzi commented 9 years ago

终于,昨天打算把双系统的空间直接回收回来,脑残+手残,直接把linux分区空间释放掉,然后合并,然后重启以后,成功进入grub rescue>模式,然后,由于手边没有win8.1的操作系统盘,托同事帮忙从公司带回来一个win7 64位的系统盘,然后,修复失败,早上到公司,找了个win8.1的系统盘,试图修复,仍然无法成功,目前正在拷贝文件,备份,联想到之前转Ubuntu时,mysql的惨痛教训,新手机已经到了,可以上qq,索性直接听从网友的建议,直接换到debian8,以后完全在debian8下工作。

xiaoliuzi commented 9 years ago

等明年自己买了新电脑,再换到arch。

xiaoliuzi commented 8 years ago

Debian 8 environment initialize

1.Requirement

First, you can go to the website rufus.akeo.ie to download the software Rufus - Create bootable USB drives the easy way.

Then, installing the rufus, and burning the system iso -- Debian 8.iso into the U disk.

Finally, plugin the U disk to the PC/Laptop and set the boot order to boot from the U disk, and choose the graphical install to start.

Note: if you want to install the base system quickly, please don't plugin the net wire to the computer, as the installation program will download some packages from the internet during installation.

But if you want to install the complete version, you should plugin the net calble to the computer, but it also need two much time, about two or more hours.

xiaoliuzi commented 8 years ago

2.Connect to internet.

Generally, you can connect with the cable. If you want to connect the internet with wireless,

xiaoliuzi commented 8 years ago

如果你想连接无线网,那么首先请检查,你是否已经安装好了无线网卡驱动,debian8一般是没有安装驱动的,可以使用如下命令查询无线网卡的型号

$lspci

使用如下命令来查看当前网卡是否已经被自动检测到,如果已经被检测到了,那么只需启用即可,就无需安装驱动了。

$ifconfig -a

添加国内debian源

先对/etc/apt/source.list进行备份

#cp /etc/apt/source.list /ect/apt/source.list_backup

然后编辑安装源 文件

#vi /etc/apt/source.list

添加如下内容

deb http://ftp.cn.debian.org/debian/ jessie main non-free contrib

然后执行如下命令,对安装源文件进行更新

#apt-get update

然后执行#apt-get install firmware-realtek命令开始安装驱动。

声明:由于本人网卡型号比较特殊,RTL8192EE,官方没有合适的驱动,最后未能成功连接无线网络,但过程仍然值得记录,以便后期查阅。

然后重启系统。

#ifconfig -a

正常可以看到wlan0了,如果没有看到,请自行google自己对应型号的无线网卡驱动。

连接有线,无法dhcp的问题

首先先对/etc/network/interfaces 的文件进行备份,以后不再提示,因为最好在对任何文件做出更改前,请先对该文件做备份,即#cp to_be_modified_file to_be_modified_file_backup 修改interfaces文件为如下内容

root@debian:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
#iface lo inet loopback
iface lo inet dhcp

auto eth0
iface eth0 inet dhcp

然后运行dhclient eth0通过dhcp自动获取ip即可。

xiaoliuzi commented 8 years ago

然后安装网络管理工具,也就是类似于windows下的图形界面中的无线列表部分,来输入你要连接的wifi的名字以及,密码 在debian下需要先卸载其他的网络管理工具,比如图形界面的network-manager删除掉,network-manager是否安装可查看/etc/init.d/目录下是否有network-manager.如果有,请使用#apt-get purge network-manager 在debian等linux发行版中,网络管理工具最好只有一个,如果安装多个,会互相造成干扰。 注意:如果卸载完network-manager以后,出现即使是有线连接路由器仍然无法上网,那么就重新申请路由器给自己dhcp一个ip,并且ifconfig看看是否成功获取到路由器分配的ip,即运行如下命令

dhclient eth0
ifconfig

然后安装命令行类型的网络管理工具:

#apt-get intall wicd-curses

安装好wicd以后,请运行如下命令启动xterm

#xterm

然后,正常会弹出一个xterm的窗口,如果没有找到xterm,那么请安装xterm

然后再在弹出的xterm窗口中输入如下命令打开wicd

#wicd-curses

然后可以看到,界面发生变化,应该是一系列wifi的列表,此界面需要使用大写命令进行操作,有点像linux的nano编辑器,最下面一行有操作提示 操作如下: 1。Shift键+p 进入偏好设置 2。network interface 设置为wlan0 3。然后按F10 4。按Shift+r,可以刷新当前列表 5。通过上下方向键,选择自己对应的路由器 6。待选择自己对应的路由器以后,确保自己的路由器那一行是高亮的,然后按下方向键右,进入配置界面,配置密码,一般在倒数第二行,配置好以后,输入F10,回到原来界面。 7。然后选择要连接的网络,按Shift+c进行连接。

以上及完成了基本的无线网络连接。

xiaoliuzi commented 8 years ago

参考资料及命令

1.启动无线网卡wlan0

#ifconfig wlan0 up

2.ifconfig可以看到当前网卡正在运行的网卡

3.扫描当前网卡状态

#iwlist wlan0 scanning

4.列出当前网卡的硬件信息,id号、名字、是否被软件锁定,是否被硬件锁定 如果需要网卡正常工作的话,软硬件是不能锁定的。

#rfkill list

如果网卡的soft blocked yes 那么需要,运行如下命令来解锁

rfkill unblock id号(一般为对应行最前面的数字)

5.wpa2加密,一般都可以用这个方法连接,可以适当加长变复杂密码,防止被破解。

xiaoliuzi commented 8 years ago

Debian 64位系统下安装32位软件需要的库

安装完32位的库以后,就可以正常运行32位软件了。

#apt-get install primus-libs-ia32

如果不行,使用如下命令搜索下自己对应的32位版本库

apt-cache search ia32-libs

然后apt-get update 然后apt-get -f install


备注: 或者尝试下apt-get install ia32-libs:i386 或者dpkg --add-architecture i386 apt-get update //此步不可省略


xiaoliuzi commented 8 years ago

sudo teamviewer --daemon enable