首页
关于
Search
1
在投射和录制时显示敏感信息写给TeamViewer,anydesk,向日葵
8,645 阅读
2
sublime 3155-3175 LICENSE
7,964 阅读
3
mysql存储过程&时间累加插入
7,781 阅读
4
永远不要相信浮点数结果精确到了最后一位,也永远不要比较两个浮点数是否相等。
4,496 阅读
5
mysql-workbench中duration fetch的含义
4,485 阅读
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
登录
Search
标签搜索
mysql
curl
grep
journalctl
rename
You can't specify target table
only_full_group_by
Sub-process
警示
dropbox
mtr
curl抓取重定向
floor
intval
ceil
round
pixmap
adwaita
date.utc
gmmktime
五好的Book
累计撰写
194
篇文章
累计收到
31
条评论
首页
栏目
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
页面
关于
搜索到
194
篇与
的结果
2019-10-13
修复挂载的NTFS文件系统为只读的方法-参考
不保证所有情况,今天打开虚拟机,发现报错,根据错误提示,得知无法写入,没有写入权限,虚拟机的文件放在ntfs分区里,查看了/etc/fstab 配置应该是正常的,那么可能是在windows更新的时候 该了什么东西导致NTFS分区变成只读的了,那么用下面的方法来修复,实测有效果,修复了之后就正常了。我的NTFS分区在 /dev/sda3sudo ntfsfix /dev/sda3 运行后Mounting volume... The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. FAILED Attempting to correct errors... Processing $MFT and $MFTMirr... Reading $MFT... OK Reading $MFTMirr... OK Comparing $MFTMirr to $MFT... OK Processing of $MFT and $MFTMirr completed successfully. Setting required flags on partition... OK Going to empty the journal ($LogFile)... OK Checking the alternate boot sector... OK NTFS volume version is 3.1. NTFS partition /dev/sda3 was processed successfully.
2019年10月13日
777 阅读
0 评论
0 点赞
2019-09-05
AppImage 可执行程序路径变动图标消失的问题
现在有些应用程序提供的是AppImage这种包,给个可执行的权限 双击即可允许,安装都不需要,有时候不小心给删掉或改个名,在应用程序列表他的图标就消失了。然而后面你再把他找回来,双击后可是可以运行但是不像第一次运行的时候会提示创建一个快捷启动的提示了,这个时候有的人会告诉你可以手动创建desktop文件其实可以有更加快捷的方式“直接 在这里 ~/.local/share/applications 更改对应的desktop文件即可[Desktop Entry] Name=Another.Redis.Desktop.Manager Comment=A faster, better and more stable redis desktop manager. Exec="/home/abc/snap/Another.Redis.Desktop.Manager.1.2.5.AppImage" %U Terminal=false Type=Application Icon=appimagekit-another-redis-desktop-manager StartupWMClass=Another.Redis.Desktop.Manager X-AppImage-Version=1.2.5 Categories=Utility; X-AppImage-BuildId=1PC2ueImPs4Zn4uEa4BtOeUPkq6 X-Desktop-File-Install-Version=0.23 X-AppImage-Comment=Generated by /tmp/.mount_AnotheWdGIop/AppRun TryExec=/home/abc/snap/Another.Redis.Desktop.Manager.1.2.5.AppImage 注意Exec 引号的内容 要与 TryExec的内容一致
2019年09月05日
778 阅读
0 评论
0 点赞
2019-07-23
微信分享的小尾巴
做个记录,下次不要再找资源了:朋友圈 from=timeline 微信群 from=groupmessage 好友分享 from=singlemessage
2019年07月23日
1,223 阅读
0 评论
0 点赞
2019-07-22
设置硬盘为引导硬盘
场景:笔记本有多块硬盘,系统A装在 A硬盘 系统B装在B 硬盘,引导盘为A 然而某一天 A盘不工作了,或者说要撤掉,而B盘可以继续引导系统,这个时候如果B盘没有做引导设置的话,B系统是无法工作的,那么在撤掉 A之前 把 B的引导给加上 就好了方法1:#grub #Grub>root(hd1,0) ## (hd1,0)表示安装到系统识别的第一块硬盘中的第一个分区。 #Grub>setup(hd1) #Grub>quit 方法2: #grub-install /dev/hdb #系统中包含有独立的/boot分区时否则用下面的命令 #grub-install --root-directory=/boot/dev/hdb #系统中没有独立的/boot分区时 ~#update-grub grub-install /dev/hdb 和 grub-install --root-directory=/boot/dev/hdb这两条命令根据自身情况二选一执行
2019年07月22日
1,764 阅读
1 评论
0 点赞
2019-07-18
高亮显示关键词
应用场景:比如我要查html文档里标注我搜索的关键词或者 有 一批关键词,看文档里是否存在var c="amp、a、b、c、d、e、g、Fuck、shit"; var array = c.split("、"); var content=$("#content").val(); for ( var i = 0; i < array.length; i++) { var reg = new RegExp("(" + array[i].replace(/,/, "|") + ")", "g"); content =content.replace(reg,"<font>$1</font>"); } content=content.replace(/\n/g,'<br>'); //$("table").after('<div class="hight">'+content+'</div>');
2019年07月18日
818 阅读
0 评论
0 点赞
1
...
16
17
18
...
39