
linux
strCSDN
这个作者很懒,什么都没留下…
展开
-
ubuntu中的内网穿透cpolar下载安装,后台运行及开机自启
ubuntu中的cpolar使用方法下载安装下载cpolarhttps://dashboard.cpolar.com/创建cpolar文件夹cd /mkdir cpolar移动至cpolar文件夹中安装(根据zip名输入)unzip cpolar.zip登录启动运行关联账号./cpolar authtoken 自己的token要在端口80上启动HTTP隧道,请运行以下命令./cpolar http 80修改配置文件vim /root/.cpolar/cpolar.y原创 2022-05-29 17:23:06 · 1862 阅读 · 0 评论 -
Ubuntu搭建HEXO,个人博客
Ubuntu搭建HEXO,个人博客下载安装nodejsapt install nodejs下载安装npmapt install npm根目录下载安装hexocd /npm install -g hexo-cli创建一个空文件夹,初始化hexocd /mkdir hexocd hexohexo initnpm install启动hexo s地址http://localhost:4000安装后台管理npm install --save hexo-admi原创 2021-01-15 11:24:12 · 588 阅读 · 0 评论 -
linux安装mysql并开启远程连接Navicat登录远程数据库
apt-get updateapt-get install mysql-servermysql_secure_installationsystemctl status mysql.service原创 2021-01-11 21:55:24 · 4745 阅读 · 3 评论 -
linux安装vnc远程桌面连接
linux安装vnc远程桌面连接#下载安装tightvncserverapt-get install tightvncserver设置远程连接的密码,可操作view-only即只能看不能操作的连接,可以创建也可以不创建#设置密码vncpasswd720P启动桌面,端口1代表5901#启动tightvncserver -geometry 800x600 :1可以开启多个,如再开启一个1080P桌面#启动tightvncserver -geometry 1920x1080 :原创 2021-01-11 19:47:21 · 296 阅读 · 0 评论