含标签“linux”的文章
gradle 编译报错:java.lang.OutOfMemoryError: GC overhead limit exceeded
>OOm错误 1.配置gradle.properties ```bash org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=4096m -X...
linux ssh转发本地端口
>linux 转发端口8000 到169.254.0.77的8000 端口,但是必须使用10.10.4.16这个跳板,那么连接如下 1.转发 ```bash ssh -L 8000:1...
archlinux iptables端口转发配置
>archlinux 可以用iptables转发端口,比如我是把自己的端口8000 转发10.10.4.16:8000 1.下载安装iptables ```bash sudo pacm...
debian 9 安装nodejs npm
>debian 9 安装nodejs 不能通过apt-get直接装,一下是安装方法 1.安装 ```bash sudo apt-get update curl -sL https...
kvm is required to run this AVD /dev/kvm is not found 运行android应用
>这个是linux机器,建议使用kvm来虚拟运行安卓app. 我的是archlinux 首先最首要的一点,bios中开启intel Virtualization Technology -...
manjaro 更新显卡驱动mesa后黑屏解决办法
>manjaro安装了mesa后就进不去了。怀疑是兼容性问题,就来个syyu解决吧 1.首先ctrl + alt + f3 进入tty模式 2.然后发现自己配置的镜像不能用,用这个更新m...
gradle 编译卡住gradle 编译慢解决
>gradle 慢可能是网络,也可以配置并行加快 1.配置如下: ```bash org.gradle.daemon=true org.gradle.parallel=true ...
manjaro 无法更新 <matti@manjaro.org> is unknown trust
1.使用下面这个命令更新key ```bash sudo pacman-key --refresh-keys --keyserver pgp.mit.edu ``` 2.然后 ```...
安卓报错:You have not accepted the license agreements of the following SDK components
>安卓报错:You have not accepted the license agreements of the following SDK components [duplicate] ...
vscode tab键不起作用
>vs code开发java发现也很爽,但是发现tab见并没有增加缩进,vscode默认的indent快捷键是ctrl+ ],所以可以做如下更改 1.File ---Preference-...