Ubuntu常用命令

Ubuntu常用命令

#进入目录
cd

#删除文件
rm
#循环删除文件(用于删除非空目录)
rm -r

#拷贝和移动文件
cp
mv

#输出文件到屏幕
cat

#比较文件不同
diff

#指定安装路径
./configure --prefix=
#编译文件
make
#安装文件
make install

#apt-get
apt-get update
apt-get install

#查看网络信息
ifconfig

#查看端口信息
netstat -anp

你可能感兴趣的:(ubuntu)