Loading

邢栋博客

linux数据流重定向

1.标准输入 (stdin):代码为0,使用< 或 << 用stdin取代键盘的输入建立新档案的简单流程 cat > catfile //输入内容,回车后 ctrl+d 结束 cat > catfile < ../302.txt 把302.txt的内容输入到 catfile cat > catfile << "eof" //输入内容,回车后 输入 eof 结束 2.标准输出 (stdout):代码为1,使用> 或者 >> 1> 以覆盖的方法将【正确的数据...

linux下搭建git服务器

windows 下安装git客户端 windows 下 生成 公钥 右击 选择 git bash ssh-keygen -t rsa // 生成地址 C:\Users\Administrator.ssh\id_rsa.pub linux下 useradd git 在 /home/git/下新建 .ssh/authorized_keys 把id_rsa.pub 传到 /home/git/下 cd /home/git/ cat id_rsa.pub >> .ssh/authorized_keys //收集所有需要登录的用户的公钥 id_rsa...

error: The requested URL returned error: 403 Forbidden while

github git push报错 error: The requested URL returned error: 403 Forbidden while accessing https://github.com/xingdong1117/server.git/info/refs vim ./git/config 修改 [remote "origin"] url = https://github.com/xingdong1117/server.git 为 [remote "origin"] url = https...

linux 常用管道命令

linux 常用管道命令 1.cut cut -d '分隔字符' -f fields cut -c 字符范围 例子 echo $PATH | cut -d ':' -f 5 echo $PATH | cut -d ':' -f 3,5 export | cut -c 12- 2.grep grep [-acinv] [--color=auto] '查找字符串' filename -c 查找字符串的次数 -v 反向选择,显示没有查找字符串内容的那一行 例子 last | grep 'reboot' last | grep -v 'root' last | ...

linux 找到文件并删除

linux 找到文件并删除 第一种方法 find -name xingdong |xargs rm -rf 第二种方法 find -name xingdong -exec rm -rf {} \;

linux内存置换空间swap之建置

linux内存置换空间swap之建置 方式1 1.先进行分割的行为 2.开始建置swap格式 mkswap /dev/hdc7 3.开始观察与加载 free swapon /dev/hdc7 free swapon -s //列出目前使用的swap装置有哪些的意思 方式2 使用档案建置swap 1.使用dd这个指令来新增一个128M的档案在/tmp底下 dd if=/dev/zero of=/tmp/swap bs=1M count=128 ll -h /tmp/swap 2.使用mkswap将/tmp/swap 这个文件格式转换为swap的文件格式 ...

linux的权限命令chgrp,chown,chmod,chattr

linux的权限命令chgrp,chown,chmod chgrp 改变档案所属群组 //要改变的群组名必须要在/etc/group 档案内存中才行 语法 chgrp [-R] 组名 dirname/filename chown 改变档案拥有者 //要改变的拥有者必须要在/etc/passwd 档案内存中才行 语法 chown [-R] 账号名称 档案或目录 chown [-R] 账号名称:账号组名 档案或目录//username:groupname或者username.groupname chown [-R] .账号组名 档案或目录 //.gr...

linux centos 查看修改计算机名

linux centos 查看修改计算机名 查看计算机名 hostname //更多信息查看可以 hostname --help 修改计算机名 vim /etc/sysconfig/network //修改为HOSTNAME=Action vim /etc/hosts // 修改为10.51.105.19 Action 10.51.105.19是我服务器的ip 重启计算机 reboot ps:不适用于centos7+

vim取消之前搜索的文字高亮

vim取消之前搜索的文字高亮 :noh 顺便记录下取消行号:set nonu

php xhprof扩展的安装和测试使用

xhprof的安装和测试使用 安装 wegt http://pecl.php.net/get/xhprof-0.9.4.tgz tar zxvf xhprof-0.9.4.tgz cd xhprof-0.9.4/extension/ /alidata/server/php/bin/phpize //我的php的安装目录是/alidata/server/php ./configure --with-php-config=/alidata/server/php/bin/php-config make && make install 然后打开p...