虚拟机VM15 Ubuntu18.04编写C程序和用ssh连接

Posted 苏洬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚拟机VM15 Ubuntu18.04编写C程序和用ssh连接相关的知识,希望对你有一定的参考价值。

输入“su”,再输入密码进入根用户

1.开启ssh服务

/etc/init.d/ssh start

  若没有安装会出现:

  

 

   (1).安装ssh

apt-get install openssh-server

   

   (2).若仍存在丢失问题,修复安装

apt-get install openssh-server --fix-missing

  

 

   (3).重启ssh服务并开启ssh服务

/etc/init.d/ssh restart
/etc/init.d/ssh start

  

 

  出现“OK”即成功

  service ssh restart  重启服务  service ssh stop  关闭服务 service ssh status 查看服务状态

 2.编写程序的方法(可在虚拟机或在xhell中):

(1)使用vi/vim编辑器书写

vi hello.c
或者
vim hello.c

(2)通过“touch hello.c”命令直接创建文件

touch hello.c

  再输入"gedit hello.c"命令,弹出编辑对话框

gedit hello.c

 

3.采用上述中的一种方法打开编写代码的界面,然后输入内容,如:

includ <stdio.h>
int main(){
   printf("hello!\\n");      
  return 0;  
}

  

 

  保存并退出

 4.编译文件

gcc hello.c -o hello

解释:gcc :gcc命令;hello.c: C源程序;-o:-o选项后接你想要执行的文件名,如“hello”

5.运行程序

./hello

在虚拟机中运行

 

         在xshell中运行

 

以上是关于虚拟机VM15 Ubuntu18.04编写C程序和用ssh连接的主要内容,如果未能解决你的问题,请参考以下文章

Windows10 安装虚拟机Ubuntu18.04

如何在虚拟机上安装ubuntu

VMWARE虚拟机的下载地址及注册码

ubuntu18.04突然无法上网解决方法

ubuntu18.04 VirtualBox 开启虚拟机出错 Kernel driver not installed (rc=-1908)

ubuntu18.04(server版)虚拟机无法上网解决过程