上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 遇到这个问题几个敲命令轻松搞定 1、首先进入mysql: mysql -u root -p 回车 输入密码 2、查询所有的库 mysql> show databases; 3、进入数据库“databases1”是库名 mysql> use databases1; 4、check table tabl 阅读全文
posted @ 2021-08-06 16:06 94那抹微笑 阅读(46) 评论(0) 推荐(0)
摘要: 我们用ls只能看到文件的大小,遇到目录,大小显示的是4k 要获取目录的大小怎么办? du命令可以查看文件或目录的大小: du -h --max-depth=1 -h:以人类可读的方式显示大小 --max-depth=1:只显示一层,如果没有这个参数的话,它会把所有子目录大小都给你算出来 阅读全文
posted @ 2021-07-29 15:02 94那抹微笑 阅读(471) 评论(0) 推荐(0)
摘要: deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted 阅读全文
posted @ 2021-07-27 16:58 94那抹微笑 阅读(166) 评论(0) 推荐(0)
摘要: js将时间戳翻译成日期格式 function timestamp2time(stamp){ var date = new Date(stamp); //时间戳为10位需*1000,时间戳为13位的话不需乘1000 console.log(" date "); console.log(date); Y 阅读全文
posted @ 2021-07-21 19:14 94那抹微笑 阅读(185) 评论(0) 推荐(0)
摘要: 今天是2021年7月13日,实测Ubuntu10.04能用的源: deb http://old-releases.ubuntu.com/ubuntu lucid main restricted universe multiverse deb http://old-releases.ubuntu.co 阅读全文
posted @ 2021-07-13 17:47 94那抹微笑 阅读(217) 评论(0) 推荐(0)
摘要: 菜单中的 System -> Preferences -> Startup Applications 禁用 Update Notifier 即可。 阅读全文
posted @ 2021-07-12 13:33 94那抹微笑 阅读(199) 评论(0) 推荐(0)
摘要: 首先举个例子,下面这段是读use_libhdca_util程序对应pid的map得到的打印: 00110000-00263000 r-xp 00000000 fd:00 2197259 /lib/libc-2.5.so 00263000-00264000 p 00153000 fd:00 21972 阅读全文
posted @ 2021-07-07 14:38 94那抹微笑 阅读(92) 评论(0) 推荐(0)
摘要: /** * @getClientIP * @desc 获取用户 ip 地址 * @param {Object} req - 请求 */ function getClientIP(req) { return req.headers['x-forwarded-for'] || // 判断是否有反向代理 阅读全文
posted @ 2021-07-01 14:16 94那抹微笑 阅读(277) 评论(0) 推荐(0)
摘要: wget -O /etc/yum.repos.d/CentOS-Base.repo http://files.tttidc.com/centos6/Centos-6.repo wget -O /etc/yum.repos.d/epel.repo http://files.tttidc.com/cen 阅读全文
posted @ 2021-06-17 14:25 94那抹微笑 阅读(198) 评论(0) 推荐(0)
摘要: 跳转到函数定义处,首先需要有tag文件,生成tag文件的方式为: 在要包含所有代码的目录(其实可以直接在根目录)执行: ctags -R 然后用vim打开代码,在任意一个调用函数的行,把光标放在被调用的函数名上,摁下组合键: Ctrl + ] 即可跳转到该函数的定义处。 如果要调回刚才看的地方,只要 阅读全文
posted @ 2021-06-12 10:31 94那抹微笑 阅读(4654) 评论(0) 推荐(2)
上一页 1 2 3 4 5 6 7 ··· 9 下一页