git 分布式代码管理系统,每一个人的电脑都可以成为一台服务器,它利用Linux语法 gitHub地址 https://github.com/ git网址: https://git-scm.com/downloads?下载完,傻瓜式安装,下一步下一步 使用命令(基本) 鼠标右键点击git_Bash_ ...
分类:
其他好文 时间:
2020-12-02 12:07:08
阅读次数:
3
1.打开shell终端,输入 sudo vi /etc/rc.local 2.在编辑器里面输入自己要启动的脚本 #!/bin/bash echo "run incar ai program..." cd /opt/robot nohup bash autorobot.sh & 2>/dev/null ...
分类:
系统相关 时间:
2020-12-01 12:15:17
阅读次数:
12
1准备工作安装好Linux操作系统,这里选择的是Linux7:[root@localehost~]#cat/etc/redhat-releaseRedHatEnterpriseLinuxServerrelease7.6(Maipo)关闭防火墙和Selinux:[root@localehost~]#systemctlstopfirewalld[root@localehost~]#systemctld
分类:
系统相关 时间:
2020-12-01 11:45:15
阅读次数:
10
问题现象:执行命令时路径中带有括号符号“()” 解决方法: 1.使用转义字符,在‘()’前加上\ dos2unix xiaoluo\(610603\)xiaoluo/1234.txt 2.在路径前后加上双引号 dos2unix "xiaoluo(610603)xiaoluo/1234.txt" 在c ...
分类:
系统相关 时间:
2020-11-30 16:16:50
阅读次数:
21
Vue+Ant design vue安装及配置使用 Ant design vue官网:https://www.antdv.com/docs/vue/introduce-cn/ 基于 Ant Design of Vue 实现的Vue项目 :https://gitee.com/sendya/ant-de ...
分类:
其他好文 时间:
2020-11-30 16:08:39
阅读次数:
7
写一个脚本计算一下linux系统所有进程占用内存大小的和。 实现代码: #!/bin/bash count=0; for i in `ps aux | awk '{print $6}' | grep -v 'RSS'` do count=$[$count+$i] done echo "$count/ ...
分类:
系统相关 时间:
2020-11-30 15:38:30
阅读次数:
13
php版本:PHP Version 7.4.6 seaslog版本:2.0.2 这样的组合,在docker php容器中,安装时,会报错,报错信息见下图: 该错误是php7.4+2.0.2版本的bug,将seaslog的版本升级到2.1.0就可以了。 第一步,下载seaslog版本 第二部:操作编译 ...
分类:
Web程序 时间:
2020-11-27 11:52:43
阅读次数:
22
:(){:|:&};:是一个bash函数,以ForkBomb闻名,是一个拒绝服务***的Linux系统。如果你好奇地去执行了这个命令,那么赶快重启系统吧~!命令解析:(){:|:&};::在这里是一个函数名,我们定义之,并在后面执行它。:|:&,:函数的输出通过管道传给另一个冒号函数作为输入,并且在后台执行。{};标识着里面的内容是一个函数主体。最后一个:为定义完成后的一次函
分类:
系统相关 时间:
2020-11-27 11:41:23
阅读次数:
18
第一步:安装 crontab ,命令 yum -y install vixie-cron 扩展:service crond start //启动服务 service crond stop //关闭服务 service crond restart //重启服务 service crond reload ...
分类:
系统相关 时间:
2020-11-27 11:08:43
阅读次数:
11
[oracle@wallet01 ~]$ cat /home/oracle/script/full_backup.sh #!/bin/bash if [ -f ~/.bash_profile ]; then . ~/.bash_profile fi export SH_HOME=/home/orac ...
分类:
数据库 时间:
2020-11-26 15:19:56
阅读次数:
23