码迷,mamicode.com
首页 > 其他好文 > 详细

在xps13 上安装Ubunutu 16.04

时间:2018-10-17 00:03:46      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:option   链接   python3   UNC   mod   没有   ftp   restrict   xen   

1 准备系统安装U盘

使用常见的光盘工具软件ultraISO。

  • (1)首先使用UltraISO打开Ubuntu-16.04.4-desktop-amd64.iso安装映像。
  • (2)在菜单栏中,选择“启动”=》“写入硬盘映像”,成功创建安装U盘。

2 使用U盘安装Ubuntu 16.04

  • (1)启动XPS13,按“F2”键进入BIOS界面,将硬盘模式设置为ACHI,并去掉并禁止Secure Boot。

  • (2)使用安装U盘,正常安装Ubuntu 16.04系统。

注意:安装完毕,可能重启后无法进入系统。如果出现这个问题,别着急,这是dell xps的一个bug,常在XPS 13 9343硬件上安装Ubuntu 15+系统时出现,可通过以下步骤补救。

  • (1)创建bootx64.efi。
    • 通过安装U盘进入U盘Ubuntu系统。
    • 进入命令行。
sudo mount /dev/sda1 /tmp
cd /tmp/EFI
sudo mkdir boot
sudo touch boot/bootx64.efi
sudo reboot
  • (2)在BIOS中创建“Ubuntu”启动项
    • 重启,按F2进入BIOS。
    • 打开“boot settings”。
    • 点击“Add Boot Option”选项,在弹出窗口中输入“Ubuntu”。
    • 在“File Name”中选择“EFI/ubuntu/shimx64.efi”
    • 勾选新建的“Ubuntu”启动项,勾掉“SAMSUNG SSD...”
    • 应用并退出。这时重启可进入系统。

3 Wifi安装

半天时间都浪费在这一步了。弄清楚了,很快。

  • (1)首先查看一下显卡信息。
lspci | grep 'network'
  • (2)接着查看显卡驱动信息。如果结果只看到“Local Loopback”一个网络配置,表示系统没有安装显卡驱动。
ifconfig
  • (3)安装dkms(Dynamic Kernel Module Support Framework)。这一步是目的是使Linux内核能够动态链接显卡驱动,是下一步的基础。安装驱动是“dkms_2.2.0.3-2ubuntu11.5_all.deb”。
sudo dpkg -i dkms_2.2.0.3-2ubuntu11.5_all.deb 
sudo dpkg -i bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu3_amd64.deb

这时Wifi图片应该已经出现在右上角了。

4 更新软件源为阿里源

# deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricted
deb-src http://archive.ubuntu.com/ubuntu xenial main restricted #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ xenial universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse #Added by software-properties
deb http://archive.canonical.com/ubuntu xenial partner
deb-src http://archive.canonical.com/ubuntu xenial partner
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse

5 安装IPTUX

可以和windows互联互通。

这是IPTUX在Github上的仓库

sudo apt-get install iptux
iptux

6 安装PPA工具

对于Ubuntu LTS 18.04, 16.04, and 14.04版本,通过安装software-properties-common包获取add-apt-repository命令。

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

对于Ubuntu 13.10或者更老的版本,通过安装python-software-properties包获取add-apt-repository命令。

sudo apt-get install -y python-software-properties

注意:通过PPA安装的软件,均安装在“/usr/lib”目录下。

7 从PPA源安装JDK8

sudo add-apt-repository ppa:ownername/projectname
sudo apt update
sudo apt install something

在Launchpad.net上找到Oracle Java (JDK) 8 Installer PPA

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt install oracle-java8-installer

8 从PPA源安装Golang

在Launchpad.net上找到Go 1.X packages

sudo add-apt-repository ppa:gophers/archive
sudo apt-get update
sudo apt install golang-1.8

为安装的GO编译软件添加一个软链接,放在"/usr/bin"目录下。

sudo ln -sf /usr/lib/go-1.8/bin/go /usr/bin/go
go version

9 从PPA源安装Chrome

在Launchpad.net上找到Chrome稳定版

sudo add-apt-repository ppa:chromium-team/stable
sudo apt-get update
sudo apt install chromium-browser
chromium-browser

10 从PPA源安装Python2和Python3

ubuntu 16.04预装:

  • Python 2.7.12
  • Python 3.5.2

11 安装VIM

sudo apt-get install vim

在xps13 上安装Ubunutu 16.04

标签:option   链接   python3   UNC   mod   没有   ftp   restrict   xen   

原文地址:https://www.cnblogs.com/sword03/p/9801077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!