码迷,mamicode.com
首页 > 系统相关 > 详细

linux和shell学习

时间:2017-11-16 11:44:22      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:常用   mic   useradd   获取   add   程序   文本   char   selinux   

sudo spctl --master-disable开启application安装时的来自任何来源;

sudo lsof  -i:9000;sodu kill -9 pid;查看端口占用并杀死进程;

rmic编译器生成stub类和skeleton类;

/home 安装软件

  • 内核的引导
    • /boot
  • 运行init
    • SysV: init, CentOS 5之前, 配置文件: /etc/inittab。
    • Upstart: init,CentOS 6, 配置文件: /etc/inittab, /etc/init/*.conf。
    • Systemd: systemd, CentOS 7,配置文件: /usr/lib/systemd/system、 /etc/systemd/system。
      • daemon
      • runlevel
  • 系统初始化
    •  
  • 建立终端
  • 用户登录系统
  • 系统目录结构
    •   /bin常用命令/boot启动链接镜像/dev外部设备/etc系统管理/home主目录/lib动态连接共享库
    • /lost+found非法关机/media外部设备挂载/mnt临时media/opt软件/proc内存/root超级权限主目录
    • /sbin系统管理程序/selinux防火墙/srv服务数据/sys(proc+devfs+devpts)/tmp临时
    • /usr(program files )/usr/bin\sbin(bin和sbin)/usr/src内核源代码。/var(variable)
      •   3s-e-single-passwd
  • 远程登录SecureCRT,Putty,SSH Secure Shell;ssh -p(port)
  • 文件属性
    •   ll或者ls -l
    • d目录-文件l链接b可随机存取装置c一次性读取装置
    • chgrp -r 递归 owner grouper/chown -r owner:grouper filer/chmod -r xyz filer(x1r2w4)/
    • chmod o/g/u/a(逗号间隔) +-= xrw file
    • cat
    • nl
    • tac
    • more/less
    • useradd -c comment -d dir -g group -G apGroup -s ShellDir (-u -o)[etc/passwd..][userconf]
    • userdel -r name
    • usermod (useradd command) name
    • passwd -l lock -u unlock -d dis -f first-next
    • groupadd -g GID -o/groupdel/groupmod
    • newgrp name
    • /etc/(passwd,shadow,group)
    • nweusers<(以passwd格式写的txt);passwd<(以name:pwd格式写的txt)
    • pwunconv取消shadow password;pwconv启用shadow password
    • df(文件系统使用量)du(磁盘空间使用量) fdisk(分区)
  • Shell
    • 后缀可以随便改
    • $(#var)长度 $(var:startInd:endInd)截取 `expr index "${var}" var_s`查找
    • 数组变量值以空格或换行分割 var[@]获取数组所有元素(var[*]应该也可以)
    • #var删除左起至第一var %var删除右起至第一var ##删除左起至最后var %%var删除右起至最后var
    • var=holyshit ${var:7}=t ${var:1-2:3}=t(右边算起) $(var:1-2}=t字符串中最后一个位置是0第一个是1;或者最后一个位置是-1
    • for i in "$@";do
      •   echo $i
    • done
    • + - * / % = == != 
    • -eq -lt -gt -ge -le -ne
    • ! -o -a
    • && ||
    • =(有空格) != -z -n str([var]) this is about the characters operation.
    • -e(exit) -s() -x(excutable) -w(writable) -r(readable) -f(file?) -d(dir?) 
    • echo -e开启转义  ""可直接使用文本格式
    • test is bound with []
    • 文件包含. file/source file
    • 重定向 >>输出追加;

linux和shell学习

标签:常用   mic   useradd   获取   add   程序   文本   char   selinux   

原文地址:http://www.cnblogs.com/burn19/p/7842726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!