码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
linux 系统时间同步问题(Centos7)
三步解决系统时间同步(Centos7) 第一步,时区设置 第二步,时间同步 第三步,定时任务 **************时区设置************ ##确认服务器上时区名称 timedatectl list-timezones |grep Shanghai ##设置时区名称 timedate ...
分类:系统相关   时间:2021-04-15 12:02:24    阅读次数:0
gyp ERR! stack Error : can't find python executable "python",you can set the PYTHON env variable.
vue中安装node-sassnpm install node-sass --save-dev1出现上面图中问题 解决办法:vscode里,打开终端,输入下面的内容先输入(在管理员模式下打开) npm install --global --production windows-build-tools ...
分类:编程语言   时间:2021-04-14 11:49:56    阅读次数:0
Leetcode** 162. Find Peak Element
Description: A peak element is an element that is strictly greater than its neighbors. Given an integer array nums, find a peak element, and return it ...
分类:其他好文   时间:2021-04-13 11:52:46    阅读次数:0
Linux 查看端口状态netstat
1、netstat命令 netstat命令可显示当前服务器上所有端口及进程服务,与grep结合可查看某个具体端口及服务情况。 参数: -t : 指明显示TCP端口 -u : 指明显示UDP端口 -l : 仅显示监听套接字(所谓套接字就是使应用程序能够读写与收发通讯协议(protocol)与资料的程序 ...
分类:Web程序   时间:2021-04-13 11:50:53    阅读次数:0
Python使用sql语句对mysql数据库多条件模糊查询
1 def find_worldByName(c_name,continent): 2 print(c_name) 3 print(continent) 4 sql = " SELECT * FROM world WHERE 1=1 " 5 if(c_name!=None): 6 sql=sql+" ...
分类:数据库   时间:2021-04-12 12:45:06    阅读次数:0
个人常用的linux运维命令 --- 间歇性更新中
查看磁盘剩余容量,一定要注意磁盘剩余容量。如果容量不足可能会导致web服务异常,mysql服务无响应等。 df -h 查询磁盘100M以上的文件 find / -type f -size +100M -print0 | xargs -0 du -h | sort -nr 查看定时任务 crontab ...
分类:系统相关   时间:2021-04-09 13:40:10    阅读次数:0
安装chromedriver.exe的报错,pycharm跑起来报错提示
报错提示 今天,在复习整理Ui自动化的东西,学习selenium的时候,要先进行安装浏览器驱动;安装好了之后,跑一下,报错 :selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chro ...
分类:其他好文   时间:2021-04-09 13:29:22    阅读次数:0
centOS7.7安装MySQL教程
1.由于centOS7.7中默认安装了MariaDB,需要先进行卸载 rpm -qa | grep -i mariadb rpm -e --nodeps mariadb-libs-5.5.64-1.el7.x86_64 2.下载MySQL仓库并安装 wget https://repo.mysql.c ...
分类:数据库   时间:2021-04-09 13:05:48    阅读次数:0
ubutnu Pycham突然卡住的问题解决办法
ubutnu 20.04 Pycham突然卡住的问题解决办法 找到sogou输入法进程 ps -ef | grep sogou bob 1682 899 0 4月07 ? 00:01:05 /opt/sogoupinyin/files/bin/sogoupinyinService-watchdog ...
分类:其他好文   时间:2021-04-09 13:05:36    阅读次数:0
153. 寻找旋转排序数组中的最小值 二分
已知一个长度为 n 的数组,预先按照升序排列,经由 1 到 n 次 旋转 后,得到输入数组。例如,原数组 nums = [0,1,2,4,5,6,7] 在变化后可能得到: 若旋转 4 次,则可以得到 [4,5,6,7,0,1,2] 若旋转 4 次,则可以得到 [0,1,2,4,5,6,7] 注意,数 ...
分类:编程语言   时间:2021-04-08 13:56:57    阅读次数:0
34568条   上一页 1 ... 15 16 17 18 19 ... 3457 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!