访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux常用的命令及ARM开发板的一些技能用法

时间:2019-07-27

常用linux命令大全_linux常用shell命令_linux常用命令

转载:此文章由个人和网络文章收集总结,如果有侵犯到你的权益,请联系删除。

Linux 开发板UBUNTU18.04 注意 qt5.8

df -hl df --help 硬盘

free -h free --help 内存

ps -ef 查看所有进程

top #实时显示进程状态

Ipcs -a/q/m/s 进程管理命令,共享内存,消息队列,信号量等

Ipcrm -m/M

查看与/dev/input目录下的event对应的设备:cat /proc/bus/input/devices

查看CPU信息:cat /proc/cpuinfo

查看内存信息:cat /proc/meminfo

查看USB设备:cat /proc/bus/usb/devices

查看键盘和鼠标:cat /proc/bus/input/devices

查看各分区使用情况:df

查看体系结构:busybox uname -a

查看中断信息:cat /proc/interrupts

Python3打包文件

pip/pip3 install pyinstaller 注意是否为 pip3

pyinstaller --version

pyinstaller +文件.py

解压出现XXX XXX magic

解决办法:

一、执行命令

linux常用命令_常用linux命令大全_linux常用shell命令

gzip -d varnish-4.0.3.tgz//要解压文件

二、继续执行命令

tar xvf varnish-4.0.3.tar

在根目录下查找某个文件 : find . -name "test"

(1)find / -name httpd.conf #在根目录下查找文件httpd.conf,表示在整个硬盘查找

# find /etc/httpd/ -name "httpd.conf" -print >find.dt 2>&1 &。[2]+ done find /etc/httpd/ -name "httpd.conf" -print >find.dt 2>&1 &。[1] done find /etc/ -name "httpd.conf" -print >find.dt 2>&1 &。

(3)find /etc -name '*srm*' #使用通配符*(0或者任意多个)。表示在/etc目录下查找文件名中含有字符串‘srm’的文件

(4)find . -name 'srm*' #表示当前目录下查找文件名开头是字符串‘srm’的文件

自动获取ip:udhcpc -i eth0

Qihua自动开始 vim /etc/profile

查看端口

U盘挂载

1、修改IP地址

打开 /etc/network/interfaces

sudo vim /etc/network/interfaces

加入以下语句:

auto eth0 #要设置的网卡

iface eth0 inet static #设置静态IP;如果是使用自动IP用dhcp,后面的不用设置,一般少用

address xxx.xxx.xxx.xxx #IP地址

netmask xxx.xxx.xxx.xxx #子网掩码

linux常用shell命令_linux常用命令_常用linux命令大全

gateway xxx.xxx.xxx.xxx #网关

自动获取ip

auto eth0 #要设置的网卡

iface eth0 inet dhcp#设置静态IP;如果是使用自动IP用dhcp,后面的不用设置,一般少用

2、修改DNS

打开/etc/resolv.conf

sudo vim /etc/resolv.conf

nameserver 180.76.76.76#百度

nameserver 8.8.8.8 #谷歌