mac连接Vmware虚拟机本地Ubuntu

    1. 先打开虚拟机上的ubuntu,输入账号,密码登录到系统。
    1. 成功登录进后,输入ifconfig来查看网卡ip。(可以输入ifconfig 加上网卡名来查看该网卡的信息。)
    1. 输入ssh 加 ubuntu系统的用户名@ip,比如 ssh user_name@10.xxx.xxx.3,来连接到系统。
1
2
3
ifconfig
ifconfig 网卡名
ssh username2Ubuntu@xx.xx.xx.x #连接本地ubuntu

macOS配置ssh快捷登录

1
2
3
4
5
6
7
8
vi ~/.ssh/config #配置config文本内容,没有则创建

Host UbuntuHost
Hostname 192.168.103.4 #ip
User username
IdentityFile ~/.ssh/id_rsa

ssh UbuntuHost #直接登录

使用apt更新和升级系统软件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
sudo apt install 软件名 #
sudo apt remove 软件名 #
sudo apt update 软件名 #
sudo apt upgrade 软件名 #

#Python
sudo apt install ipython
sudo apt install ipython3
sudo apt install python-pip
sudo apt install python3-pip

#C++
sudo apt install cmake
sudo apt install qtcreator

#Ruby
sudo apt install ruby

#安装ssh服务器
sudo apt install openssh-server

#apt和apt-get
#apt和apt-get都是ubuntu下常用的安装软件的命令
#早期使用apt-get,从ubuntu16开始,官方建议使用apt