windows10中远程登录ubuntu16.04的桌面

1. 安装xrdp sudo apt-get install xrdp 1 2. 安装vnc4server sudo apt-get install vnc4server tightvncserver 1 3. 安装xfce4 su...
emer 发布于  2019-8-2 09:26 

frp配置

server: [common] bind_port = 8000 vhost_http_port=3000 dashboard_port = 7500 dashboard_user = admin dashboard_pwd = 111 user: [common...
emer 发布于  2019-8-1 16:43 

SSH连接Win10 Linux子系统

查看是否开启SSH服务 ps -ef | grep ssh 安装SSH服务 apt-get remove openssh-server apt-get install openssh-server 修改配置端口为22,开启允许密码登录 vim /etc/ssh/sshd_config Port 22 PasswordAuthentication yes ...
emer 发布于  2019-8-1 16:40 

安装win10子系统桌面

四、安装图形界面 要想使用Linux的图形用户界面通常有两种方法,一种是使用X-Windows安装使用图形化界面,另一种是通过本机远程桌面连接。 通过本机远程桌面 安装xorg(包括显卡驱动、图形环境库等等一系列软件包) sudo apt-get install xorg 安装xfce4(运行在类Unix操作系统上,提供轻量级桌面环境) sudo ap...
emer 发布于  2019-7-24 11:45 

react循环搜索字段模板

getFields() { const count = this.state.expand ? 10 : 6; const { getFieldDecorator } = this.props.form; const children = []; //默认type 1 input 2 select const t...
emer 发布于  2019-7-18 10:01 

webpack打包时删除console.log

new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false, drop_debugger: true, drop_console: true } })
emer 发布于  2019-7-17 11:30 

react ifame自适应高度

import React from 'react'; import ReactDOM from 'react-dom'; import { Row, Col, Icon, Button, Layout, Menu, Card } from 'antd'; export default class Iframe extends React.Component...
emer 发布于  2019-7-15 10:21 

react引入网页跨域问题

遇到这样一个需求,react重构网站时,暂时需要引入其他域名网站详情,如果直接引入肯定会因为没有cookie引入页面跳转登录页面,首先我们用api代理网页,不会有跨域问题,其次防止网站重新登录,那么我们需要将cookie重写,我的配置如下: const str="http://ningli.win/" app.use(...
emer 发布于  2019-7-15 10:07 

combineReducers报错

reducer必须返回对象,根据type执行对象的语句的switch函数,break,没有return,或者return返回的不是object。所以报错 因为redux初始化reducer会默认传入几个随机的action,用来检测你reducer的返回值是否是undefined,如果是,reducer就会提示你。用来确保reducer的正常工作! ...
emer 发布于  2019-7-11 22:02 

layui如何设置tab切换自动刷新tab

//点击选项卡时刷新 <tab lay-filter="outNav"> element.on('tab(outNav)', function(data){ var src=$(".layui-tab-item.layui-show").find("iframe").attr("src"); $(".layui-tab-item.layui-sh...
emer 发布于  2019-7-11 15:49