# idea
idea() {
nohup your_path/bin/idea.sh "$(pwd)" > /dev/null 2>&1 &
}
[......]
换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[......]
1 加密
ecryptfs-setup-private --nopwcheck --noautoumount
两个参数是不校验登录密码(用mount密码)、不自动卸载 (但是参数似乎不好用)
2 挂载
ecryptfs-mount-private
输入mount密码可挂载到~/Private下
3 脚本自动挂载
网上搜到的都是keyring,不好使,这里直接用了expect
#!/bin/bash
/usr/bin/expect > /dev/null <&l[......]
1 安装插件
C / C++
2 配置include
出现“#include errors detected.”时,按ctrl + .跳转进入配置,或者打开c_cpp_properties.json直接配置:
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",[......]
前几年,微软提供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.[......]