bc:计算器
mainframe
缓存查看:lscpu
磁盘和内存性能测试命令: dd
Xmanager (xshell) 安装:
用户名: byg
公司: microsoft
注册码: 使用工具生成
命令库调用: # ldd /bin/ls
系统库跟踪,调用库详细信息 # strace ls
library 库跟踪 # ltrace ls
二进制文件查看: # hexdump -c /bin/ls
把重要任务绑定到指定cpu,优先处理
linux版本 //查看截图
# rpm -qi kernel
cmd> convert H: /fs:ntfs //windows 把H盘fs格式转换为ntfs格式,数据不丢失,转换后不可逆转。
windows:只有一个活动主分区,启动使用。
磁盘分区情况: # lsblk
windows虚拟内存文件:pagefile.sys
查看网卡列表: # ifconfig -a //所有网卡
ifup eht0
service network start 无法启动eth0: ?
终端切换 # chvt 1 //1~6
# tty //当前终端
系统版本信息:
~# cat /etc/centos-release
# lsb_release -a
# sz test.txt //linux传输文件到windows
# uname -r
# lscpu // Flags mmx
# free -h
# lsblk //磁盘分区,交换分区 swap
# dmesg | grep eth
Linux图形库: GNOME(C编写 gtk) KDE(C++编写 qt) XFCE(轻量级桌面)
# cp
# echo $SHELL
# cat /etc/shells
# /bin/sh //切换shell /bin/sh与bash有不同的配置文件和命令
shell 将 普通字符转换为计算机识别的0 1代码
# hostname #pwd #echo $PS1
PS1变量 //测试环境与生产环境用颜色区分,避免误操作。
~# cd /etc/profile.d/ // ?
# vi /root/.bashrc //
# enable //内部变量
# echo $PATH
translate.google.com //谷歌翻译
linux与windows换行区别,使用hexdump查看。 //二进制查看区别
# man ascii // ? 查看ascii编码
# help command // help ls
# enable -n command //禁用内部命令
# type command //type ls 查看命令是否内部命令或外部命令
# hash
# source /root/.bashrc == . /root/.bashrc //
alias别名:
~# alias cdnet=’cd /etc/sysconfig/network-scripts/’
# alias //查看所有别名
# unalias vi
# vi /root/.bashrc
# vi /etc/bashrc
# 命令 选项 参数
# date
# clock -s //时间
# hwclock //时间
# whatis
# makewhatis //centos6使用
# mandb //centos7使用
date: //支持日期 时间戳相互转换
# date +’%F %T’
# date -d ‘-1 day’ //昨天日期
# date -d ‘-20 day’ +%F //
? date -s
# date -s ‘-10 day’
# clock -s
# which ls
# man
# whatis ls
# man 1 ls
# vi /etc/issue //登陆前界面字符提示
# vi /etc/motd //登陆后界面字符提示 默认为空
# wall //向其它终端发送通知
~# cd /usr/share/doc/
# sosreport内部命令用 help ,外部命令用man
? //章节查看相关
# whatis issue
# man 8 agetty
# ll /etc/localtime
# zdump -v /etc/localtime //读取内容
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime //修改本机时间
# timedatectl –help //支持centos7 不支持centos6
# tzselect
# cal //日历
# shutdown
# w //查看登陆用户正在干什么
# whoami
# who -r
# runlevel
# init [0 ~ 6] //切换回模式
# screen //共享屏幕
# screen -S helpme //创建共享回话
# screen -ls //回话列表
# screen -x helme //加入回话
Ctrl+a,d //单方脱离会话
长时间的备份文件先执行 screen 再做备份操作。预防断网导致备份终止。连上回话可继续回到上一次备份。
# echo ‘echo $PATH’;
# echo “echo $PATH”;
# echo `echo $PATH`;
# date -s ‘2018-06-06 13:02:02’ //修改时间
# hwclock -w //将系统时间同步到BIOS
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/103456