搜虎博客 - 人生天地间,忽如远行客。

搜虎博客 - 人生天地间,忽如远行客。

醉后不知天在水,满船清梦压星河。

archlinux iptables端口转发配置

>archlinux 可以用iptables转发端口,比如我是把自己的端口8000 转发10.10.4.16:8000 1.下载安装iptables ```bash sudo pacm...

javax.imageio.ImageIO.write空指针java.lang.NullPointerException

> javax.imageio.ImageIO.write报空指针异常,发现是没有路径directory导致 1.加入路径存在判断即可 ```java File di...

spring boot h2备份和还原--java代码

>h2内置的tool可以备份还原h2数据库。 1.首先引入了h2的依赖,注意scope是compile,spring boot 默认是runtime,没法使用 ```xml ...

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 -...

android studio 报错: Unable to find method 'org.gradle.api.tasks.TaskInputs.file

>手贱升级了gradle,导致sync报错---android studio 报错:Unable to find method 'org.gradle.api.tasks.TaskInputs....

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] ...