打赏

星辰大海ゞ

That which does not kill us makes us stronger!

导航

随笔分类 -  Shell

上一页 1 2

vmstat命令
摘要:如果vmstat和iostat命令不能再你的电脑上运行,请安装sysstat包。因为vmstat和iostat命令是集成在SYSSTAT(系统监视工具)包里面。Usage: vmstat [options] [delay [count]]Options: -a, --active ... 阅读全文

posted @ 2014-09-10 13:46 星辰大海ゞ 阅读(345) 评论(0) 推荐(0) 编辑

chattr与lsattr命令
摘要:这两个命令是用来查看和改变文件、目录属性的,与chmod这个命令相比,chmod只是改变文件的读写、执行权限,更底层的属性控制是由chattr来改变的。chattr命令的用法:chattr [ -RVf ] [ -v version ] [ mode ] files…最关键的是在[mode]部分,[... 阅读全文

posted @ 2014-08-26 20:31 星辰大海ゞ 阅读(211) 评论(0) 推荐(0) 编辑

查看RPM包里的内容
摘要:有时候,拿到一个RPM,并不想安装它,而想了解包里的内容,怎么办呢? 如果只相知道包里的文件列表执行:#rpm -qpl packetname 如果想要导出包里的内容,而不是安装,那么执行:# rpm2cpio pkgname | cpio -ivd 阅读全文

posted @ 2014-08-12 14:48 星辰大海ゞ 阅读(643) 评论(0) 推荐(0) 编辑

grep的用法
摘要:首先创建我们练习grep命令时需要用到的demo文件demo_file。$ cat demo_fileTHIS LINE IS THE 1ST UPPER CASE LINE IN THIS FILE.this line is the 1st lower case line in this file... 阅读全文

posted @ 2014-08-11 14:50 星辰大海ゞ 阅读(288) 评论(0) 推荐(0) 编辑

JAR命令使用
摘要:jar 命令详解 jar 是随 JDK 安装的,在 JDK 安装目录下的 bin 目录中,Windows 下文件名为 jar.exe,Linux 下文件名为 jar。它的运行需要用到 JDK 安装目录下 lib 目录中的 tools.jar 文件。不过我们除了安装 JDK 什么也不需要做,因为 S... 阅读全文

posted @ 2014-07-19 18:10 星辰大海ゞ 阅读(275) 评论(0) 推荐(0) 编辑

ulimit命令
摘要:/etc/security/limits.conf 配置文件可限制文件打开数,系统进程等资源 /etc/security/limits.d/90-nproc.conf 配置用户最大进程数上限 linux下默认是不产生core文件的,要用ulimit -c unlimited放开 概述 系统性能一直是 阅读全文

posted @ 2014-06-18 10:59 星辰大海ゞ 阅读(471) 评论(0) 推荐(0) 编辑

提取linux中eth0的IP地址
摘要:法1:cut[root@oldboy oldboy]# ifconfig eth0|grep 'inet addr'|cut -d ":" -f2|cut -d " " -f110.0.0.162法2:awk[root@oldboy oldboy]# ifconfig eth0|grep 'inet... 阅读全文

posted @ 2014-06-17 08:54 星辰大海ゞ 阅读(2194) 评论(0) 推荐(0) 编辑

AWK用法整理
摘要:printf "1:2::3:::4::::5" | awk -F '[:]+' '{print $4}' [:]+ 表示以1个或多个 :(冒号)作为分隔符 ip addr |awk -F '[ ]+' 'NR==8 {print $3}' | awk -F '/' '{print $1} NR== 阅读全文

posted @ 2014-06-17 08:49 星辰大海ゞ 阅读(535) 评论(0) 推荐(0) 编辑

dmidecode详解
摘要:1、DMI简介 DMI (Desktop Management Interface, DMI)就是帮助收集电脑系统信息的管理系统,DMI信息的收集必须在严格遵照SMBIOS规范的前提下进行。 SMBIOS(System Management BIOS)是主板或系统制造者以标准格式显示产品管理信息所... 阅读全文

posted @ 2014-06-17 08:47 星辰大海ゞ 阅读(627) 评论(0) 推荐(0) 编辑

<U+FEFF> character showing up in files. How to remove them?
摘要:You can easily remove them using vim, here are the steps:1) In your terminal, open the file using vim:vim file_name2) Remove all BOM characters::set n... 阅读全文

posted @ 2014-06-06 09:10 星辰大海ゞ 阅读(839) 评论(0) 推荐(0) 编辑

脚本传参
摘要:脚本名称叫test.sh 入参三个: 1 2 3运行test.sh 1 2 3后$*为"1 2 3"(一起被引号包住)$@为"1" "2" "3"(分别被包住)$#为3(参数数量) 阅读全文

posted @ 2014-06-04 11:14 星辰大海ゞ 阅读(198) 评论(0) 推荐(0) 编辑

上一页 1 2