临时域名(Xshell7连接Linux)

Xshell7连接Linux1.首先需要安装sshsudo apt-get install openssh-server 或者sudo yum install openssh-server若遇到图片以下的错误,apt-get 命令出错,改为yum把apt-get改为yum;若出现以下问题,则需修改权限[lyt@localhost ~]$ sudo apt-get install openssh-server
[sudo] password for lyt:
lyt is not in the sudoers file. This incident will be reported.#出现错误
[lyt@localhost ~]$ su
Password:
[root@localhost lyt]# chmod u+w /etc/sudoers #修改权限
[root@localhost lyt]# vi /etc/sudoers
[root@localhost lyt]# chmod u-w /etc/sudoers
[root@localhost lyt]# su lyt
vi /etc/sudoers 进入编辑后找到以下内容,在root下面添加 XXX ALL=(ALL) ALL## Allow root to run any commands anywhereroot ALL=(ALL) ALLlyt ALL=(ALL) ALL下载安装shhDependency Updated:
openssh.x86_64 0:7.4p1-21.el7 openssh-clients.x86_64 0:7.4p1-21.el7

Complete!
安装完成3.检测是否已启动
[lyt@localhost ~]$ ps -e |grep ssh
1632 ? 00:00:00 ssh-agent
5612 ? 00:00:00 sshd
出现以上ssh两行说明启动成功2.ifconfig查看地址3.打开ssh新建后配置【连接】和【用户身份验证】,然后点击右下角可连接最后连接成功如果没有连接成功,可以试试把防火墙关掉。下面是知识扩展:Linux基础cd code #cd 命令是切换到 Code 目录下方touch hello_shiyanlou.c #创建名为 hello_shiyanlou.c 文件gedit hello_shiyanlou.c #gedit编辑器将 hello_shiyanlou.c 文件打开gcc -o hello_shiyanlou hello_shiyanlou.c #编译程序./hello_shiyanlou #执行程序WebIDE 环境使用指南WebIDE 界面提供的是一个可以在浏览器中编辑代码的 IDE 的界面。在 WebIDE 中,可以编辑代码文件,打开 Terminal 终端执行 Linux 命令,还可以在 Terminal 中运行 Web 服务获得临时域名文件的读写操作f=open('C:/Users/32189/Desktop/aface.txt',mode="r",encoding="utf-8")#mode="r",只能读取;print(f.read())#读取文件
#print(f.readline())#读取一行
#print(f.readlines())#读取多行#和迭代器一个道理,调用读取一次就取出读取内容,以至于多调用几次输出结果会为空,打开txt文件会发现里面内容已被清空。#mode="r",可以进行写操作;print(f.write("make"))#写入内容
print(f.write("新增内容1\n"))
print(f.write("新增内容2\n"))
print(f.write("新增内容3")
f.writelines(["apple","banana"])#写入多行写入的内容会把之前的内容覆盖,如果我们要往文件里追加内容,应该用mode='a'.不同的模式会有不同的效果,根据需要选择模式。图片不完整,截图来自菜鸟教程还可以用seek()方法用于移动文件读取指针到指定位置。最后记得关闭文件:f.close()打开图片#图片放置当前路径from PIL import Image
img=Image.open('11.png')
img.show

本文出自快速备案,转载时请注明出处及相应链接。

本文永久链接: https://www.175ku.com/27383.html