lwh-note

 

Ubuntu提示功能很强大,一般如果你想安装什么软件,可以直接输入名字,然后会有提示,安装格式一般为:

sudo apt install  名字

 

 

在ubuntu16.04中安装virtualbox 5

sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian xenial contrib" >> /etc/apt/sources.list.d/virtualbox.list'

wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -

sudo apt update

sudo apt install virtualbox-5.0

输入  virtualbox  启动

 

在Ubuntu16.04中安装git

 

sudo apt-get install git

 

这时候会提示你输入管理员密码

输入一次 Y ,其他回车

到此为止git安装完毕,输入git --version测试看版本确定是否安装成功

然后输入远程Github的注册邮箱跟密码

$ git config --global user.name "Your Name"
$ git config --global user.email "youremail@domain.com"

 

在Ubuntu16.04中安装带有nginx的git服务器
详细步骤参考   https://www.centos.bz/2017/07/ubuntu-16-04-nginx-http-git/

 

 

在Ubuntu16.04卸载 git 

 

sudo find /usr/local -depth -iname 'git*' -exec rm -rf  {} \;

sudo apt-get remove git

 

 

VMware虚拟机下ubuntu16.04如何安装vmware tools(为了实现window跟ubuntu相互可复制粘贴)

详细步骤参考    https://jingyan.baidu.com/article/c74d6000bbc6110f6a595d3b.html

 

分类:

Ubuntu

技术点:

相关文章:

  • 2021-07-12
  • 2021-10-19
  • 2021-11-01
  • 2021-10-27
  • 2022-01-09
  • 2021-04-12
  • 2021-10-17
猜你喜欢
  • 2021-10-01
  • 2021-11-03
  • 2022-01-08
  • 2021-10-25
  • 2021-11-13
  • 2021-12-21
相关资源
相似解决方案