proxy trojan
proxy trojan自动脚本onGitHub
trojan server 服务端
傻瓜式一键部署,(等我Linux学有所成了再自己一步一步地配置)1curl -O https://raw.githubusercontent.com/atrandys/trojan/master/trojan_mult.sh && chmod +x trojan_mult.sh && ./trojan_mult.sh
按照提示进行部署。需要手动输入域名和密码。
结果会输出一个如下的配置,config。保存这个配置(config.json),待会要用。12345678910111213141516171819202122232425262728293031{ "run_type": "client", "local_addr": "127.0.0.1", "local_port": 1080, "remote_addr" ...
基于 CentOS 搭建 Discuz 论坛
基于 CentOS 搭建 Discuz 论坛准备LAMP环境
LAMP 是 Linux、Apache、MySQL 和 PHP 的缩写,是 Discuz 论坛系统依赖的基础运行环境。
MySQL123456yum -y install mysql-server service mysqld restart设置MySQL的账户和密码/usr/bin/mysqladmin -u root password 'mypassword' 设置开机自启动chkconfig mysqld on
apache123yum -y install httpdservice httpd restartchkconfig httpd on
php12345yum -y install php php-fpm -php-mysql -yservice php-fpm restart查看php-fpm 进程监听的窗口netstat -nlpt |grep php-fpmchkconfig php-fpm on
discuz12345678下载wget https://labs-125367545 ...
linux base
linux basecentos6 定时重启12345678910111213vi /etc/crontab按照提示添加 00 06 * * * root reboot载入内存crontab /etc/crontab启动服务并设置开机自启动systemctl enable crond.servicesystemctl restart crond.service查看定时配置crontab -l查看系统启动记录last rebootwho -b
ubuntu 设置root ssh 登录12345678重置 root 的密码sudo passwd rootsuvi /etc/ssh/sshd_config 将 PermitRootLogin 参数修改为 yes。将 PasswordAuthentication 参数修改为 yes。若 sshd_config 配置文件中无此配置项,则添加 PasswordAuthentication yes 项即可。service ssh restart
远程复制1scp [-r] [source_username]@hostname:/path [des_u ...
build a mail server for myself
build a mail server for myself使用环境
centos7.6环境搭建域名解析
解析域名添加两条记录123456789A 记录记录类型:A主机记录:@记录值:ip addressMX 记录记录类型:MX主机记录:@记录值:我的域名
生效检查
ping mydomain, 如果返回了刚刚解析的ip地址,则成功。
检查MX记录, nslookup -q=mx mydomain,如果返回的信息中有域名,则成功。
postfix
安装1yum -y install postfix
配置,参考如下1234567891011121314151617postconf -e 'myhostname = server.cuimouren.cn'postconf -e 'mydestination = localhost, localhost.localdomain'postconf -e 'myorigin = $mydomain'postconf -e 'mynetworks = 127.0.0.0/ ...
git的使用
git的使用菜鸟教程
创建git库初始化git123mkdir gittestcd gittestgit init
将要添加的文件加入git管理 add 从工作区到暂存区
1git add [filename]
或者将目录下所有文件都加入
1git add .
自定义所要添加的文件总是手动add每一个太麻烦了,但总有些不希望添加进去的,可以这样。
创建一个文件名为的文件
.gitignore
文件内容为1234file.*!.gitignore!file1
这表示名为file的文件要加进去
所有文件都要加进去
忽略 .gitignore
忽略 file1
提交到仓库commit 将暂存区提交到仓库
1git commit -m [提交描述]
每次commit之前都要add所要进行管理的文件
查看仓库状态123git status简略版git status -s
查看文件更改情况1git diff [filename]
版本管理版本回退在commit之后后悔了
12git log git log --oneline //简略版
使用git log 查看之前提交的记录, ...
markdown的使用方法
markdown 的使用方法标题
星号数量为标题等级段落
markdown换行直接在后面加上两个以上的空格就好。字体
*斜体文本*_斜体文本_**粗体文本**__粗体文本__***粗斜体文本***___粗斜体文本___
分割线
你可以在一行中用三个以上的星号、减号、底线来建立一个分隔线,行内不能有其他东西。你也可以在星号或是减号中间插入空格。下面每种写法都可以建立分隔线:
123***---___
删除线
在文字的两端加上两个波浪线 即可
删除
下划线
下划线可以通过 HTML 的 标签来实现:1<u>带下划线文本</u>
脚注
创建脚注格式类似这样 [^RUNOOB]。
[^RUNOOB]: 菜鸟教程 – 学的不仅是技术,更是梦想!!!
列表
无序列表使用星号(*)、加号(+)或是减号(-)作为列表标记,这些标记后面要添加一个空格,然后再填写内容。
有序列表使用数字并加上 . 号来表示。列表嵌套
列表嵌套只需在子列表中的选项前面添加四个空格即可。
一
二
一
二
三
三
一
二
the asd.
区块
在段落开头使 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
hexo quick startCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
hexo的使用
hello hexo安装前提
安装git
安装Node.js安装hexo
window cmd 下输入 npm install -g hexo-cli使用hexo1234hexo init <foldername>cd <folder>npm install
安装server与deployer12npm install hexo-server --savenpm install hexo-deployer-git --save
基础命令123456hexo new //生成文章hexo c //清理hexo g //生成hexo s //启动本地服务hexo d //部署简单地使用为 hexo g -d
以上就是hexo的基础使用了。
配置github page
建立一个GitHub仓库
将仓库配置为GitHub page
输入自己的域名 cuimouren.cn
解析自己的域名到GitHub page添加如下的域名解析记录
主机记录: @
记录类型: CNAME
线路类型: 默认
记录值: yishuilingbo.github.io ...