会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
好啊好呀
博客园
首页
新随笔
联系
订阅
管理
2020年12月
ftp服务器
摘要: 安装ftp软件包 yum install vsftpd ftp的配置文件 ftpuserss文件类似黑名单,文件中的用户无法登陆ftp vsftpd.conf为主配置文件 是否允许匿名用户登陆 yes为允许 是否允许登陆的用户切换到上级目录 yes为允许 用户登陆后是否可写 关闭selinux 防火
阅读全文
posted @ 2020-12-29 16:08 好啊好呀
阅读(157)
评论(0)
推荐(0)
2020年9月
xshell链接速度优化
摘要: 1;打开配置文件 vi /etc/ssh/sshd_config 2;调整第79行和115内容 设置为no 3;打开hosts文件 建立本地IP地址和主机名信息 4;systemctl restart sshd 完成
阅读全文
posted @ 2020-09-13 16:12 好啊好呀
阅读(166)
评论(0)
推荐(0)
修改yum源地址
摘要: 打开https://developer.aliyun.com/mirror/ 复制centos选项命令 curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo(下载一个yum镜像)
阅读全文
posted @ 2020-09-12 15:44 好啊好呀
阅读(1051)
评论(0)
推荐(0)
linux为网卡设置别名
摘要: linux为网卡修改ip地址时,要输入 vi /etc/sysconfig/network-scrpits/ifcfg-ens33 太长了 我们可以输入 alias catnet='cat /etc/sysconfig/network-scripts/ifcfg-ens33' 来为网卡设置别名 只要
阅读全文
posted @ 2020-09-12 14:37 好啊好呀
阅读(563)
评论(0)
推荐(0)
linux虚拟机链接外网
摘要: 虚拟机使用nat模式,dhcp方式获取ip地址
阅读全文
posted @ 2020-09-10 13:45 好啊好呀
阅读(142)
评论(0)
推荐(0)
2020年7月
饿了么组件库使用
摘要: import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' Vue.use(ElementUI) npm安装,然后进入main.js按照上诉代码配置
阅读全文
posted @ 2020-07-03 15:39 好啊好呀
阅读(590)
评论(0)
推荐(0)
用css制作箭头
摘要: 画两条边框,再旋转盒子45度 .box{ width: 7px; height: 7px; border-top: 2px solid red; border-right: 2px solid red; transform: rotate(45deg); }
阅读全文
posted @ 2020-07-02 23:25 好啊好呀
阅读(146)
评论(0)
推荐(0)
flex之竖向排列块级元素
摘要: 今天写小米demo遇到了这个 使用浮动和定位都不好使,js太麻烦 我就是使用了flex .box{ height: 500px;//规定大小,不然并不会自动换行 display: flex;//给父元素开启flex flex-direction: column;//修改主轴方向 flex-wrap:
阅读全文
posted @ 2020-07-01 22:06 好啊好呀
阅读(6477)
评论(0)
推荐(0)
2020年6月
ref的用法
摘要: ref是vue中提供的直接操作dom的方法 <div v-for = 'item in list'>{{item}}</div> <input type="text" value="请输入内容" ref = 'inp' @focus='clear'> <button @click= 'click()
阅读全文
posted @ 2020-06-30 23:04 好啊好呀
阅读(486)
评论(0)
推荐(0)
pormise用法
摘要: 第一步,创建pormise实例 let p = new Promise() 第二步,填写逻辑 let p = new Promise((res,rej)=>{ setTimeout(()=>{ var flag = false ; if(flag){ res('hello') }else{ rej(
阅读全文
posted @ 2020-06-30 22:03 好啊好呀
阅读(233)
评论(0)
推荐(0)
下一页
公告