logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

虚拟机中Linux(Ubuntu16.04)与本地Win7共享文件夹

二、文件共享设置1、虚拟机设置2、VMware Tools安装

#虚拟机#linux
Linux系统(Ubuntu16.04)ssh配置无密码登录

1、安装 openssh-服务端:sudo apt-get install openssh-server客户端:sudo apt-get install openssh-client2、配置无密码登录:ssh-keygen -t rsa -P "" ;cat .ssh/id_rsa.pub >> .ssh/authorized_keys;scp userName@ip:file folder

#linux#ssh
vue-router 路由元信息

const router = new VueRouter({routes: [{path: '/foo',component: Foo,meta: { requiresAuth: true }// a meta field}]})

#前端
vue.js hover事件模拟

1、hover用不了,但是可以把hover拆开成一进一出,这样就可以调用 vue 提供的方法了,就是麻烦了一点2、:class 绑定 HTML 与 class3、@mouseover="overShow" @mouseout="outHide"4、:class="{show:showText,hide:hideText}"

没有可用的软件包 git,但是它被其它的软件包引用了。

Linux下git安装1、检查 git 是否已安装$ gitps:很多软件都可以用这种方式进行安装,安装前不妨试一试2、$ sudo apt install git

#linux#git
到底了