如何在Ubuntu编写运行C语言

如何在Ubuntu编写运行C语言

1.准备工作(检查网络&更新源)

1
2
3
4
5
6
7
8
ping www.baidu.com

services.msc

VMware DHCP Service
VMware NAT Service

sudo apt update

2.ssh

1
2
3
4
5
6
7
8
9
10
11
12
sudo ps -e |grep ssh

sudo apt install openssh-server

sudo ps -e |grep ssh

service ufw stop

sudo apt install net-tools

ifconfig

3.gcc g++

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sudo apt install gcc

sudo apt install build-essential

sudo apt install g++
````

## 4.vim

```bat
sudo apt install vim
````

## 5.测试

```bat
vim hello.c

gcc -Wall hello.c -o hello

gcc hello.c -o hello

./hello

6.切换用户

1
2
3
4
5
6
7
8
9
10
sudo passwd root

su root

sudo adduser he

sudo deluser he

w

1
2
3
4
5
6
#include<stdio.h>
int main(void)
{
printf("hello world!\n");
return 0;
}
打赏
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • Copyrights © 2022-2024 何福海
  • 访问人数: | 浏览次数:

请我喝杯奶茶吧~

支付宝
微信