uname -a 看主机位数 ip a 看IP地址 vi /etc/sysconfig/network 改主机的名字 vi /etc/hosts 改映射关系 vi /etc/sysconfig/network-scripts/ifcfg-eth0 改网卡配置 vi /etc/profile 改环境变量配置 scp -r /cloud/hadoop-2.2.0 root@192.168.231.139:/cloud/hadoop-2.2.0 传递文件…
1. 查看系统内核版本 [root@funsion geekxa]# cat /etc/issue CentOS release 6.5 (Final) Kernel \r on an \m 显示了系统名称(CentOS)和内核版本(release 6.5)The file /etc/issue is a text file which contains a message or system identification to be printed before the login promp…
虚拟机版本默认用户root 密码toor ls:显示当前目录包含的文件及文件夹 ls -l:以常规格式显示当前目录包含的文件及文件夹(开头字母解释:d:目录 -:文件 c:设备文件 l:链接 b:块设备,如硬盘分区) ls -a:显示隐藏文件(以.开头) ls-lh:以适合阅读的常规格式显示当前目录包含的文件及文件夹 ls -lh --sort=size:按照文件大小排序(=time:时间) cd /media:进入media目录(.:当前目录 ..:上级目录 直接使用cd进入用户主目录~#)…
本文主要介绍 Hadoop 常用的命令. test命令 用于检测文件或目录是否存在,判断文件或目录大小. -test -[defsz] <path> : Answer various questions about <path>, with result via exit status. -d return if <path> is a directory. -e return if <path> exists. -f return if <path&…