内网ip 172.27.2.1虚拟机网络172.27.2.0/24内网访问示例,如访问ip为172.27.2.101的虚拟机,远程桌面 172.27.2.1:62101vnc 172.27.2.1:62201#!/bin/bash#该shell为linux下创建windows虚拟机,使用linux作为网关时,批量端口映射#vnc端口映射……Continue reading » Jason 6 years ago (2019-05-26) 1311Views 0Comments0个赞
碰到一个客户必须要R3.6....然后没辙,只好给他装一个。顺便记录一下如何安装指定版本的R,要替换其他版本只需要代码中的3.6.0改掉就行了。<code><span class="pln">yum groupinstall "Development Tools" -yyum insta……Continue reading » Jason 6 years ago (2019-05-22) 1754Views 1Comments1个赞
在nodejs安装之前先设置权限:npm config set user 0npm config set unsafe-perm truenpm install顺便写一下GitLab Runner在CentOS7中的安装方法:curl -L https://packages.gitlab.com/install/repositories……Continue reading » Jason 6 years ago (2019-05-21) 1213Views 1Comments0个赞
apt-get install alien -ywget --user=hetzner --password=download http://download.hetzner.de/tools/LSI/tools/MegaCLI/8.07.14_MegaCLI.zipunzip 8.07.14_MegaCLI.zip -d megaclicd m……Continue reading » Jason 6 years ago (2019-05-15) 1205Views 0Comments0个赞
Dell服务器使用omreport查看硬件信息一.命令指南123456789omreport chassis # 显示所有主要组件的常规状态 omreport chassis memory # 显示内存信息omreport chassis t……Continue reading » Jason 6 years ago (2019-05-15) 1558Views 0Comments0个赞
4月22日消息,哔哩哔哩(B站)整个网站后台工程源码泄露,并且“不少用户名密码被硬编码在代码里面,谁都可以用。”在GitHub上以“openbilibili”为用户创建的“go-common”代码库:https://github.com/openbilibili/go-common短短 5 个小时时间内,star 数已经达到 700+。然而该项目并不是……Continue reading » Jason 6 years ago (2019-04-22) 1657Views 1Comments0个赞
一行代码搞定,如果需要手动确认的话把-y参数去掉yum history list|awk '$1 ~ /[0-9]+/ {print $1}'| while read a; do yum history undo -y $a; done……Continue reading » Jason 6 years ago (2019-04-16) 1055Views 0Comments0个赞
查看运行容器docker ps查看所有容器docker ps -a进入容器其中字符串为容器ID:docker exec -it d27bd3008ad9 /bin/bash删除所有服务:docker service rm $(docker service ls)停用全部运行中的容器:docker stop $(docker ps -q)……Continue reading » Jason 6 years ago (2019-04-16) 1757Views 0Comments0个赞
假如你有一个大数据库需要上传到服务器中进行分析,同时这个文件也是您从网上下载下来的,那么远程下载是最好的选择,不仅省去了中间环节,而且服务器100M每秒的大带宽会让你10秒内下载完1G的文件(理论最高速)。远程下载原理:你在服务器控制界面提交下载请求,服务器根据请求直接从网上下载文件。省去了你自己从源网站下载再上传到服务器的中间环节。操作步骤:1. 进……Continue reading » Jason 6 years ago (2019-04-14) 1191Views 0Comments0个赞
1. 系统自动清理在Centos 7下,系统使用systemd管理易变与临时文件,/tmp目录的清理规则主要取决于/usr/lib/tmpfiles.d/tmp.conf文件的设定,默认的配置内容为:# This file is part of systemd.## systemd is free software; you can redist……Continue reading » Jason 6 years ago (2019-04-12) 1206Views 0Comments0个赞