把exe做成windows服务

1. 修改注册表 在“开始→运行”中键入“regedit.exe”,打开“注册表编辑器”,展开分支“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services”
2. 在右侧窗格中显示的就是本机安装 …
点击查看更多…

Nginx 配置虚拟主机

  1. 当前nginx的版本
[root@localhost ~]# nginx -v
nginx version: nginx/1.10.3
2. 查看nginx 目录结构
[root@localhost ~]# cd /etc/nginx/
[root@localhost nginx]# tree ../nginx
../nginx
├── conf.d
│   ├── default.conf
│   └── default.conf.rpmsave
├── fastcgi_params
├── koi-utf
├── koi-win
├── mime.types
├── modules -> ../../usr/lib64/nginx/modules
├── nginx …
点击查看更多…

阿里云 ECS 升级内核

在更新系统的软件包时,发现如下错误:

[root@www]# yum -y update
Loaded plugins: fastestmirror
Setting up Update Process
Determining fastest mirrors
.
.
.
Error: Package: util-linux-ng-2.17.2-12.24.el6_8.1.x86_64 (updates)
           Requires: kernel >= 2.6.32-642
           Installed: kernel-2.6.32-279 …
点击查看更多…

ubuntu 命令行修改提示符

image1

修改.bashrc

# vim /root/.bashrc

找到

PS1='${debian_chroot:+($debian_chroot)}\A\u@\h:\W\#\$ '
export PS1='\[\e[30;0m\]\u@\h \w \$: '
代码的格式可以自定义,下面是网上找的:
转移符的意思:
/d :代表日 …
点击查看更多…

ubuntu 16.04 安装django

ubuntu合两个版本的python ,同时又python2 和python3

当前系统版本

terry@vUBox:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.1 LTS
Release:        16.04
Codename:       xenial

1.启动python2

terry@vUBox:~$ python
Python 2.7.12 (default, Nov 19 …
点击查看更多…