亲宝软件园 - 正版软件下载基地

软件发布|软件分类|下载排行|最新软件|IT学院

软件
软件
文章
当前位置:首页系统工具系统其他 → linux命令快查小助手
linux命令快查小助手

linux命令快查小助手

V1.0免费版
下载地址
  • 软件介绍

  亲宝软件园为您提供linux命令快查小助手的高速下载服务,当前页面下载的版本为1.0免费版,如需查看所有版本,可点击这里查看: 系统其它 linux命令快查小助手

linux命令快查小助手支持大部分常用linux命令模糊查询,支持中文模糊查询,可右键复制命令,查看命令详情,对于使用linux系统的朋友来说非常实用!

linux命令快查小助手

软件相关

  Linux常用命令:

  系统信息

  arch 显示机器的处理器架构

  uname -m 显示机器的处理器架构

  uname -r 显示正在使用的内核版本

  dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI)

  hdparm -i https://img.qb5200.com/download-x/dev/hda 罗列一个磁盘的架构特性

  hdparm -tT https://img.qb5200.com/download-x/dev/sda 在磁盘上执行测试性读取操作

  cat /proc/cpuinfo 显示CPU info的信息

  cat /proc/interrupts 显示中断

  cat /proc/meminfo 校验内存使用

  cat /proc/swaps 显示哪些swap被使用

  cat /proc/version 显示内核的版本

  cat /proc/nethttps://img.qb5200.com/download-x/dev 显示网络适配器及统计

  cat /proc/mounts 显示已加载的文件系统

  lspci -tv 罗列 PCI 设备

  lsusb -tv 显示 USB 设备

  date 显示系统日期

  cal 2007 显示2007年的日历表

  date 041217002007.00 设置日期和时间 - 月日时分年.秒

  clock -w 将时间修改保存到 BIOS

  关机 (系统的关机、重启以及登出 )

  shutdown -h now 关闭系统

  init 0 关闭系统

  telinit 0 关闭系统

  shutdown -h hours:minutes & 按预定时间关闭系统

  shutdown -c 取消按预定时间关闭系统

  shutdown -r now 重启

  reboot 重启

  logout 注销

  文件和目录

  cd /home 进入 '/ home' 目录'

  cd .. 返回上一级目录

  cd ../.. 返回上两级目录

  cd 进入个人的主目录

  cd ~user1 进入个人的主目录

  cd - 返回上次所在的目录

  pwd 显示工作路径

  ls 查看目录中的文件

  ls -F 查看目录中的文件

  ls -l 显示文件和目录的详细资料

  ls -a 显示隐藏文件

  ls *[0-9]* 显示包含数字的文件名和目录名

  tree 显示文件和目录由根目录开始的树形结构

  lstree 显示文件和目录由根目录开始的树形结构

  mkdir dir1 创建一个叫做 'dir1' 的目录'

  mkdir dir1 dir2 同时创建两个目录

  mkdir -p /tmphttps://img.qb5200.com/download-x/dir1https://img.qb5200.com/download-x/dir2 创建一个目录树

  rm -f file1 删除一个叫做 'file1' 的文件'

  rmdir dir1 删除一个叫做 'dir1' 的目录'

  rm -rf dir1 删除一个叫做 'dir1' 的目录并同时删除其内容

  rm -rf dir1 dir2 同时删除两个目录及它们的内容

  mv dir1 new_dir 重命名/移动 一个目录

  cp file1 file2 复制一个文件

  cp dir/* . 复制一个目录下的所有文件到当前工作目录

  cp -a /tmphttps://img.qb5200.com/download-x/dir1 . 复制一个目录到当前工作目录

  cp -a dir1 dir2 复制一个目录

  cp -r dir1 dir2 复制一个目录及子目录

  ln -s file1 lnk1 创建一个指向文件或目录的软链接

  ln file1 lnk1 创建一个指向文件或目录的物理链接

  touch -t 0712250000 file1 修改一个文件或目录的时间戳 - (YYMMDDhhmm)

  file file1 outputs the mime type of the file as text

  iconv -l 列出已知的编码

  iconv -f fromEncoding -t toEncoding inputFile > outputFile creates a new from the given input file by assuming it is encoded in fromEncoding and converting it to toEncoding.

  find . -maxdepth 1 -name *.jpg -print -exec convert "{}" -resize 80x60 "thumbs/{}" \; batch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick)

  文件搜索

  find / -name file1 从 '/' 开始进入根文件系统搜索文件和目录

  find / -user user1 搜索属于用户 'user1' 的文件和目录

  find /home/user1 -name \*.bin 在目录 '/ home/user1' 中搜索带有'.bin' 结尾的文件

  find /usr/bin -type f -atime +100 搜索在过去100天内未被使用过的执行文件

  find /usr/bin -type f -mtime -10 搜索在10天内被创建或者修改过的文件

  find / -name \*.rpm -exec chmod 755 '{}' \; 搜索以 '.rpm' 结尾的文件并定义其权限

  find / -xdev -name \*.rpm 搜索以 '.rpm' 结尾的文件,忽略光驱、捷盘等可移动设备

  locate \*.ps 寻找以 '.ps' 结尾的文件 - 先运行 'updatedb' 命令

  whereis halt 显示一个二进制文件、源码或man的位置

  which halt 显示一个二进制文件或可执行文件的完整路径

  挂载一个文件系统

  mount https://img.qb5200.com/download-x/dev/hda2 /mnt/hda2 挂载一个叫做hda2的盘 - 确定目录 '/ mnt/hda2' 已经存在

  umount https://img.qb5200.com/download-x/dev/hda2 卸载一个叫做hda2的盘 - 先从挂载点 '/ mnt/hda2' 退出

  fuser -km /mnt/hda2 当设备繁忙时强制卸载

  umount -n /mnt/hda2 运行卸载操作而不写入 /etc/mtab 文件- 当文件为只读或当磁盘写满时非常有用

  mount https://img.qb5200.com/download-x/dev/fd0 /mnt/floppy 挂载一个软盘

  mount https://img.qb5200.com/download-x/dev/cdrom /mnt/cdrom 挂载一个cdrom或dvdrom

  mount https://img.qb5200.com/download-x/dev/hdc /mnt/cdrecorder 挂载一个cdrw或dvdrom

  mount https://img.qb5200.com/download-x/dev/hdb /mnt/cdrecorder 挂载一个cdrw或dvdrom

  mount -o loop file.iso /mnt/cdrom 挂载一个文件或ISO镜像文件

  mount -t vfat https://img.qb5200.com/download-x/dev/hda5 /mnt/hda5 挂载一个Windows FAT32文件系统

  mount https://img.qb5200.com/download-x/dev/sda1 /mnt/usbdisk 挂载一个usb 捷盘或闪存设备

  mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share 挂载一个windows网络共享

  Default Programs Editor

下载地址

  • PC版

linux命令快查小助手的相关版本

    无相关信息

相关文章

用户评论

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们