240 发简信
IP属地:云南
  • Failed to run java: exec: "java": executable file not found in $PATH

    安装java SDK即可 sudo apt install openjdk-8-jdk

  • nginx: upstream sent too big header while reading response header from upstream

    在/etc/nginx/conf.d/http.conf 文件对应的http策略中,location{}最下方加入三句: proxy_buffe...

  • VMware上ubuntu虚拟机无法重启,只能关机再开机

    这两天在虚拟机上一顿瞎操作,把虚拟机玩坏了,现在reboot或者强制重启都无法开机,必须先关机在开机才行。 解决方法:先关机,然后在虚拟机设置中...

  • python类和对象相关内置BIF

    issubclass(class, classinfo) 第一个参数是第二个参数的子类,就返回true。 注意:1.一个类会被认为是自身的子类 ...

  • insmod时出现 ERROR:Required key not available 的解决

    原贴:https://blog.csdn.net/m0_38066161/article/details/81812816 我在尝试以编译模块的...

  • python字符串内置函数

    s 为字符串 s.isalnum()所有字符都是数字或者字母,为真返回 True,否则返回 False。 s.isalpha() 所有字符都是字...

  • ubuntu16.04下qt4和qt5同时安装的切换

    https://blog.csdn.net/lch_vison/article/details/80899039 一般情况下,ubuntu16....

  • ubuntu查看已安装的包和卸载包命令

    查看已经安装的包: dpkg --list 卸载命令: sudo apt-get --purge remove 包名

  • 调用filep_open后系统死机

    需要注意的一个坑 函数 filp_open 原型如下: structfile*filp_open(const char*, int,umode_...