logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Linux通过SSH显示图形界面

参考:https://blog.csdn.net/weixin_42232749/article/details/81624156

Linux 通过shell获取IP,参数是网卡名

Ubuntu 16、树莓派测试通过编写getIP.sh文件:#!/bin/bashiface=$1ip="$(ip addr show "$iface"|grep "inet\b"|awk '{print $2}')"echo $ip使用方法:./getIP.sh wlan0./getIP.sh eth0...

Lubuntu开机慢 提示flip_done timed out

这是Ubuntu的一个BUG。官方给出的解决方案:sudo nano /etc/default/grub加入参数:video=SVIDEO-1:d即:GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash video=SVIDEO-1:d”然后sudo update-grub重启即可。参考:https://askubuntu.com/questions/893...

vue 跨域 proxyTable不生效 解决办法

在网上查了半天,都没行,原来是要把axios再封装一层,再调用就OK了。1. 修改config目录下的index.js文件proxyTable: {'/':{target: 'http://localhost:8080',changeOrigin: true,ws: true,pathRewrite: {'^/': ''}...

到底了