系统服务-月排行
今天安装redis出现些之前安装不曾出现错误,一并在此做个记录 一、安装redis及出现错误 首先下载redis,官方下载地址页面:https://redis.io/download 我们这里选择稳定版6.0.1版本 正常安装步骤如下: 这里报了如下错误 再执行编译: 安装成功会出现:Hint: I ...
分类:系统服务 时间:2020-05-13 19:02:24 收藏:0 阅读:409
https://blog.csdn.net/xujianqun/article/details/80618499 arch/arm/include/asm/io.h #define ioremap(addr, size) __ioremap((addr), (size), __pgprot(PROT ...
分类:系统服务 时间:2020-05-19 16:12:43 收藏:0 阅读:517
CentOS7 安装32位运行库——ia32 推荐:ubuntu系统学习之:64位ubuntu系统安装32位兼容库ia32-libs的方法 本人在intel i7上安装了ubuntukylin-14.10-desktop-amd64.iso 的ubuntu,即64位的ubuntu系统,但是很多软件, ...
分类:系统服务 时间:2020-06-05 10:54:11 收藏:0 阅读:782
在virtualbox中安装虚拟机时,返回 代码: E_INVALIDARG (0x80070057)解决方法 打开VirtualBox管理器,打开工具栏管理->虚拟介质管理,将所有带有的虚拟介质全部删除,然后重新添加即可解决! 参考网址:https://blog.csdn.net/weixin_4 ...
分类:系统服务 时间:2020-06-08 01:21:54 收藏:0 阅读:533
VMWare虚拟机提示:另一个程序已锁定文件的一部分,进程无法访问...模块"Disk"启动失败 场景: 早上本地的gitlab挂了,没多想我觉得肯定是那台电脑开启时间太长了虚拟机卡死了,挂掉了. 我开了电脑就,打开VMware就发现出现了“锁定文件失败,打不开磁盘......模块"Disk"启动失 ...
分类:系统服务 时间:2020-06-10 13:21:43 收藏:0 阅读:265
yum 和 pip install区别 linux查看python pip 包的安装路径 pip show django 会显示包的信息和安装地址 Linux下指定pip install和make install安装路径 在Linux下直接用pip install packageName,有些文件会 ...
分类:系统服务 时间:2020-06-17 15:23:11 收藏:0 阅读:451
open -n /Applications/Wireshark.app 呃 今天遇到个问题,只在macos_nfsv4上发生, smb 和 nfsv3都pass 我debug的方法是: 在testcase处,打断点,然后一步步调用; 在testcase处,打log / print --> 在底层调用 ...
分类:系统服务 时间:2020-06-29 01:01:02 收藏:0 阅读:502
编写shell脚本希望结束时将结果打包成zip文件 完整路径 $ zip -r /tmp/result.zip ~/result/ 打开压缩包发现包含完整路径/home/user/result/* 不含路径 $ zip -rj /tmp/result.zip ~/result/ 使用-j参数不包含任 ...
分类:系统服务 时间:2020-07-01 10:05:57 收藏:0 阅读:256
1、查看当前服务器时间 # date -R Mon, 27 Apr 2020 10:41:54 +0800 2、安装ntpdate服务 # yum install ntpdate Loaded plugins: fastestmirror Determining fastest mirrors 3、 ...
分类:系统服务 时间:2020-07-01 14:50:12 收藏:0 阅读:193
1. vim /etc/default/docker 2. 修改启动配置文件,如下: # 开启远程访问 -H tcp://0.0.0.0:2375# 开启本地套接字访问 -H unix:///var/run/docker.sockDOCKER_OPTS="-H tcp://0.0.0.0:2375 ...
分类:系统服务 时间:2020-07-10 00:02:08 收藏:0 阅读:614
cd $delivery_dir for file in `ls $delivery_dir` do if [ -d $delivery_dir"/"$file ]; then cd $delivery_dir"/"$file git pull cd $server_tools_dir"projec ...
分类:系统服务 时间:2020-07-10 19:19:50 收藏:0 阅读:301
在Linux中释放内存每次都需要用root账户去执行,想写个shell脚本来自动释放内存,但是今天在终端输入“sudo echo 3 > /proc/sys/vm/drop_caches"后提示权限不够 解决方法(通过以下命令行来解决): 1 sudo bash -c "echo 3 > /proc ...
分类:系统服务 时间:2020-08-26 11:08:25 收藏:0 阅读:417
void CStat::runtimePrintBuf(std::vector<std::string> &buf){ static int last_print_lines = 0; for(int i = 0; i < last_print_lines; ++i){ printf("\033[1 ...
分类:系统服务 时间:2020-08-27 18:32:29 收藏:0 阅读:268
1、发现没有ifconfig命令 [root@PC3 ~]# ifconfig bash: ifconfig: command not found... 2、查找安装包 [root@PC3 ~]# yum list | grep net-tool* net-tools.x86_64 2.0-0.17 ...
分类:系统服务 时间:2020-12-14 18:50:08 收藏:0 阅读:277
[Desktop Entry]Name=IntelliJ Idea EDUExec=/home/shun/develop/idea-IE-203.5981.183/bin/idea.shIcon=/home/shun/develop/idea-IE-203.5981.183/bin/idea.png ...
分类:系统服务 时间:2020-12-28 10:31:42 收藏:0 阅读:146
新建/etc/synthetic.conf sudo vim /etc/synthetic.conf 创建软链接 在文件中添加内容,格式: 更目录下的文件 + TAB + 自定义的真实目录 datas /opt/datas 重启MAC 重启后可以看到新增的文件夹 ...
分类:系统服务 时间:2020-12-31 09:43:14 收藏:0 阅读:278
Ubuntu制作系统服务时服务程序需要root权限 1、简单service start_service.service [Unit] Description=MonitorIP After=network-online.target Wants=network-online.target [Serv ...
分类:系统服务 时间:2021-01-13 18:03:00 收藏:0 阅读:75
1.执行 ls /lib/systemd/system 你可以看到有很多启动脚本,其中就有我们需要的 rc.local.service 2.打开rc-local.service脚本,可以看到以下内容 # This file is part of systemd. # # systemd is fre ...
分类:系统服务 时间:2021-01-24 01:01:46 收藏:0 阅读:313
操作步骤 1、钉钉创建群组 2、编写shell脚本 #!/bin/bash time=$(date "+%Y-%m-%d %H:%M:%S") RESULT1=`curl -H "Content-Type: application/json" -s -X POST -d '[{"optType":" ...
分类:系统服务 时间:2021-02-08 16:46:00 收藏:0 阅读:146
eclipse没有server: eclipse集成Tomcat: 打开eclipse - 窗口 - 首选项 - 服务器 - 运行时环境 找到Tomcat然后添加。 eclipse添加插件: 开发WEB项目时要集成Tomcat可以并不是所有的eclipse都有服务器选项,如果不幸你的正好没有,不要怕 ...
分类:系统服务 时间:2021-03-16 11:36:32 收藏:0 阅读:124
140414243448956
上一页179116下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!