linux服务器怎么调整背景颜色?
linux下设置ls命令显示文件、文件夹颜色:
1. LS_COLORS
用 dircolors -p 可以 看到缺省的颜色设置,包括各种颜色和“粗体”,下划线,闪烁等定义。
环境变量LS_COLORS时用来设置GNU ls的–color选项中的颜色的。
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
NORMAL 00 # global default, although everything should be something.
FILE 00 # normal file
DIR 01;34 # directory
如何更改linux终端显示颜色?
securecrt设置彩色和显示中文
设置options-sessionoptions-emulation,然后把terminal类型改成xterm,并点中ansicolor复选框。
字体设置:options-sessionoptions-appearance-font然后改成你想要的字体就可以了。
注意:1:字符集选择utf8,这样可以避免显示汉字乱码
2:选择字体的时候,需要选择turetype的字体(如新宋体),不然会出现汉字乱码
3:scrollbackbuffer调大(5000),这样你就可以看到以前显示内容,这样方便很多
4:terminal要选择xtem,这样你ssh到服务器上才能显示颜色,并把ansicolor打上勾
5:我选择的颜色方案windows或traditional。
用securecrt(linux)来上传和下载数据
设置一下上传和下载的默认目录就行
options–sessionoptions–filetransfer下可以设置上传和下载的目录
剩下的你只要在用securecrt登陆linux终端的时候:
发送文件到windows客户端:szfile1file2
zmodem接收可以自行启动.
从客户端上传文件到linux服务端:
只要服务端执行:rz(rz-y)
然后在securecrt里选文件发送,协议zmodem
简单吧,如果你以前一直使用ssh,而又没有对外开放ftp服务,你就直接使用这种方式来传输你的文件
securecrt的帮助中copy的:zmodemisafull-duplexfiletransferprotocolthatsupportsfastdata
transferratesandeffectiveerrordetection.zmodemisveryuser
friendly,allowingeitherthesendingorreceivingpartytoinitiatea
filetransfer.zmodemsupportsmultiplefile(batch)transfers,and
allowstheuseofwildcardswhenspecifyingfilenames.zmodemalso
supportsresumingmostpriorzmodemfiletransferattempts.
rz,sz是便是linux/unix同windows进行zmodem文件传输的命令行工具
ps:linux上rz/sz这两个小工具安装lrzsz-x.x.xx.rpm即可,unix可用源码自行编译,solarisspac的可以到sunfreeware下载执行码
linux绿色文件怎么改为蓝色?
蓝色表示目录;
绿色表示可执行文件;
红色表示压缩文件;
浅蓝色表示链接文件;
灰色表示其它文件;
红色闪烁表示链接的文件有问题了;
黄色是设备文件,包括block, char, fifo。
用dircolors -p看到缺省的颜色设置,包括各种颜色和“粗体”,下划线,闪烁等定义。
如果需要改变系统默认的这个颜色,可以用下面的方法:
# vi /etc/DIR_COLORS
然后在文件里面,找到自己想要修改的项,如要改目录颜色的话,可以把DIR 01;34改成“DIR 01;37;44”,37是字体白色,44是字背景蓝色。
编辑完成后保存退出
然后,执行
# eval `dircolors /etc/DIR_COLORS`
注意命令中的`符号为键盘~符号下面的那个,别弄错了。