Author Archives: coder4

IntelliJ IDEA打开项目后在Ubuntu 24.04下闪退

换Ubuntu24.04后,idea打开项目直接闪退,必现,调jvm堆无效

闪退可以在命令行找到 提示错误:
[0509/193513.227389:FATAL:setuid_sandbox_host.cc(158)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need[......]

继续阅读

ecryptfs加密文件夹

1 加密
ecryptfs-setup-private --nopwcheck --noautoumount
两个参数是不校验登录密码(用mount密码)、不自动卸载 (但是参数似乎不好用)
2 挂载
ecryptfs-mount-private
输入mount密码可挂载到~/Private下
3 脚本自动挂载
网上搜到的都是keyring,不好使,这里直接用了expect
#!/bin/bash

/usr/bin/expect > /dev/null <&l[......]

继续阅读

Windows官方虚拟机备份

前几年,微软提供windows + 各种浏览器的虚拟机镜像(vbox、vmware等都有)
主要用途是在mac等其他系统中调试edge,链接是https://developer.microsoft.com/en-us/microsoft-edge/tools/vms 现在这个链接已经挂了,但是镜像的iso还在azure上,以下是链接备份:

# Each uncommented line consists of a VM image URL and its MD5 checksum.[......]

继续阅读