搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
花生_TL007
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
从网页中获取表格内容和数据,并存储到Excel中,python代码,直接写代码
2
EXEC sp_executesql 与 EXEC 的区别、使用场景和例子
3
目标检测系列5——tf2.2实现Faster R-CNN(全网最好最详细的代码实现)_timedistributed(batchnormalization(), name=bn_name
4
HarmonyOS应用开发-搭建开发环境_harmonyos开发环境
5
C#学习笔记之不安全代码_c#允许不安全代码
6
华为编程规范
7
Java创建一个学生类_创建一个学生类student,包含学生姓名
8
IDEA使用教程(一)_idea教程
9
Linux usb驱动开发(基础)_usb char devpath [16]
10
【Linux】简单的网络计算器的实现(自定义协议,序列化,反序列化)
当前位置:
article
> 正文
Xshell的使用 Xshell配色及其编码设置
作者:花生_TL007 | 2024-03-09 22:58:20
赞
踩
xshell配色
Xshell配色及其编码设置
1. 配色方案:
苹果绿,或者称
豆沙绿
,的具体色彩值是:色调(Hue)84、饱和度(Sat)91、亮度 (Lum)205。对应RGB值为(204, 232, 207),对应网页色彩值为#CCE8CF。这个色彩参数,可以根据个人的喜好稍作修改,让自己用电脑的候感觉到最舒服为宜。把浏览器和窗口背景调成这个 颜色,据说对眼睛有好处,尤其是用计算机时间比较长的人。
让眼睛舒服的颜色还有
草绿
,
浅绿色
,
浅蓝色
,
浅褐色
,
亚麻布色
。红色也是很刺激眼睛的颜色,看的时间长了,也容易产生眼干、眼涩等症状,加重眼睛疲劳。在用电脑时,如果环境光线不强,记得调整屏幕亮度,可以让眼睛更舒适。
XTerm.xcs
**************************
[XTerm]
text=e5e5e5
cyan(bold)=55ffff
text(bold)=ffffff
magenta=bb00bb
green=006400
green(bold)=55ff55
background=000000
cyan=00cdcd
red(bold)=ff5555
yellow=c8af00
magenta(bold)=ff55ff
yellow(bold)=fff555
red=bb0000
white=ebebeb
blue(bold)=50beff
white(bold)=ffffff
black=000000
blue=1e90f5
black(bold)=555555
[Names]
name0=XTerm
count=1
**************************************
ubuntu.xcs
************************************************
[ubuntu]
text=ffffff
cyan(bold)=34e2e2
text(bold)=ffffff
magenta=75507b
green=4e9a06
green(bold)=8ae234
background=300a24
cyan=06989a
red(bold)=ef2929
yellow=c4a000
magenta(bold)=ad7fa8
yellow(bold)=fce94f
red=cc0000
white=d3d7cf
blue(bold)=729fcf
white(bold)=eeeeec
black=000000
blue=3465a4
black(bold)=555753
[Names]
name0=ubuntu
count=1
************************************************
comfort.xcs
*********************************************
[comfort]
text=dce2e2
cyan(bold)=2ad1b8
text(bold)=dce2e2
magenta=dd3682
green=55bb55
green(bold)=55bb55
background=002b35
cyan=2ad1b8
red(bold)=dc322f
yellow=e5d900
magenta(bold)=dd3682
yellow(bold)=e5d900
red=dc322f
white=dce2e2
blue(bold)=268bd2
white(bold)=dce2e2
black=002b35
blue=062bd2
black(bold)=002b35
[Names]
name0=comfort
count=1
*********************************************
2. Xshell的设置
3. 组合快捷键
4. Xshell内置的命令
5. Xftp的设置
6. ubuntu上ssh的设置
openssh服务的安装及其使用
ssh为Secure Shell的缩写。
由互联网工程任务组(IETF-The Internet Engineering Task Force)的网络工作小组(Network Working Group)所制定。
ssh是建立在应用层和传输层基础之上的安全协议。
ssh是目前较可靠,专为远程登录会话和其他网络服务提供安全性的协议。
1:安装ssh服务
ubuntu安装ssh服务器:
sudo apt-get install openssh-server
重启ssh服务(出现问题时使用):
sudo service ssh restart
2:配置ssh设置
lsgx@lsgx-ubuntu:code$
cat /etc/ssh/sshd_config
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes
# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024
# Logging
SyslogFacility AUTH
LogLevel INFO
# Authentication:
LoginGraceTime 120
# PermitRootLogin without-password
PermitRootLogin yes
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile
%h/.ssh/authorized_keys
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes
# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#MaxStartups 10:30:60
#Banner /etc/issue.net
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes
lsgx@lsgx-ubuntu:code$
cat /etc/ssh/ssh_config
# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.
# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.
# Site-wide defaults for some commonly used options. For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.
Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
PasswordAuthentication yes
# HostbasedAuthentication no
# GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# GSSAPIKeyExchange no
# GSSAPITrustDNS no
# BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
# MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
# VisualHostKey no
# ProxyCommand ssh -q -W %h:%p gateway.example.com
# RekeyLimit 1G 1h
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no
7. 安装sz rz
rz,sz是Linux/Unix同Windows进行ZModem文件传输的命令行工具
优点:比ftp命令方便,而且服务器不用打开FTP服务。
lsgx@lsgx-ubuntu:code$
sudo aptitude install lrzsz
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/花生_TL007/article/detail/216630
推荐阅读
article
xshell
+
winscp
+
Xming
的
安装
及使用_
xming
下载
密码...
因为虚拟机上面只能CPU,跑代码太费时间,所以如果要远程连接别的已经装好linux系统及gpu的服务器上,需要
安装
两个软...
赞
踩
article
xshell
与
xming
配置
转发页面到
windows
_
xming
xshell
...
【代码】
xshell
与
xming
配置
转发页面到
windows
。_
xming
xshell
xming
xshell
...
赞
踩
article
(三)
Xshell
+
Xming
显示
服务器
图形窗口(用
faster
r-cnn
训练
自己
的
数据集
,
将...
一
,
简介之前两篇已经成功开始
训练
自己
的
数据集
,
并得到了
训练
的
模型。由于使用xshell远程连接
服务器
,
所以在画图时没法在...
赞
踩
article
XMing
+
XShell
打开
Linux
服务器
网页界面_
xshell
打开
网页...
打开
Linux
服务器
界面_
xshell
打开
网页
xshell
打开
网页 ...
赞
踩
article
Linux配置
Xming
+[
Putty
, Xshell,
SecureCRT
] 本地显示
X11
转发
图像
...
在window平台使用
Xming
接收
X11
转发
图像
,可以将无法在终端中显示出来的图形窗口在本地得以显示。常用在本地进行远...
赞
踩
article
Xshell
+
Xming
使用心得...
安装步骤:–> 执行
Xming
-6-9-0-31-setup.exe,并且默认下一步到结束配置XLaunch:–> 运行...
赞
踩
article
XShell
用户福音,新一代
支持
多
平台
的免费
SSH
终端
WindTerm
来了...
公众号关注「奇妙的 Linux 世界」设为「星标」,每天带你玩转 Linux !
WindTerm
是一个专业的跨
平台
SS...
赞
踩
article
XShell
收费?5款
免费
且超赞的
SSH
工具
,一个比一个香
_
免费
ssh
工具
...
ssh
链接
工具
_
免费
ssh
工具
免费
ssh
工具
SSH
客户端是后端程序员日常工作必备的
工具
之一,一...
赞
踩
article
再见收费的
XShell
,
我改用
国产
良心
工具
,
完全免费
!
...
点击关注公众号
,
回复“2T”获取2TB学习资源
!
互联网架构师后台回复2T有特别礼包来自:toutiao.com/i669...
赞
踩
article
Xshell
提示 “要继续使用此程序
,
您必须
应用
最新
的
更新
或使用新版本“的
解决方案
_
xshell
要...
要想解决
Xshell
提示
更新
最新
版问题,有两种方案。_
xshell
要继续使用此程序
,
您必须
应用
最新
的
更新
xshell
要继...
赞
踩
article
xshell
连接堡垒机
JumpServer
_
jumpserver
xshell
...
第一步:点击新建会话,填写堡垒机的地址与端口号,如图所示:
_
jumpserver
xshell
jumpserver
xs...
赞
踩
article
XShell
7
绿色
版一键
安装
教程_
xshell
绿色
...
Xshell是一款功能强大且安全的终端模拟器,支持SSH、SFTP、TELNET、RLOGIN和SERIAL。是一款终端...
赞
踩
article
Xshell
v5.0
Build
0983
绿色
版本_
xshelll
绿色
...
Xshell
– 完全免费强大的 SSH 客户端 ,支持多种远程协议,提供了很多功能与高级性能,中文界面也让你轻松管理远...
赞
踩
article
Linux
CenOS
Xshell
命令
提示符改
颜色
永久使用_
xshell
如何
命令
弄绿色...
1 切换到root用户2 执行vim ~/.bashrc3 添加语句PS1='\[\e[35;40m\][\t][\u@...
赞
踩
article
Xshell
& Xftp & XManager &
MobaXterm
_
xmanager
xmob...
Xshell
快捷键窗口快捷键 Alt + P 打开当前会话的属性 Alt + O 打开会话面板 Alt + N 新建会话...
赞
踩
article
【
Jenkins
】
linux
:x
shell
远程连接 Linux 服务器 (Centos 7)
安装
...
目录一、
Jenkins
下载二、jdk准备三、
安装
Jenkins
方式1:
war
包四、
安装
Jenkins
方式2:rpm包【推...
赞
踩
article
Centos7
+
Xshell
+
Jenkins
堆装_
jenkin
集成xshell...
Cenos7,
Jenkins
,
Xshell
_
jenkin
集成xshell
jenkin
集成xshell ...
赞
踩
article
【
xshell
】
linux
:
xshell
远程连接
Linux
服务器
安装
Jenkins
_jenk...
目录一、
Jenkins
下载二、jdk准备三、
安装
Jenkins
方式1
:
war包四、
安装
Jenkins
方式2
:
rpm包【推...
赞
踩
article
Linux
-Xshell-
Jenkins
...
因为开发部门同时维护多个版本,多个版本的发布,测试需要大量人力,所以要有一个专业的持续集成工具来管理持续重复的工作。//...
赞
踩
相关标签
服务器
linux
ubuntu
ssh
xming
putty
xshell
scrt
pycharm
Xming
XLaunch
Linux图形化
github
java
mac
python
编程语言
运维