摘要:
使用apt get install 安装软件 使用apt cache search 查询软件 使用dpkg i 安装ded软件包, 类似于CentOS中的rpm包 L 查询软件安装的位置 l 显示包版本 使用apt get remove 删除软件 使用apt get update 更新 dpkg d 阅读全文
摘要:
Httpd服务器的坑 1. 在/etc/httpd/conf/httpd.conf中的配置信息, 有时注释到的内容仍然会生效 2. 配置Auth时, 允许htpasswd规定的文件中的所有的用户, Require valid uesr, 允许特定的用户Require user user1 user2 阅读全文
摘要:
以下都是举例说明: A. 使用fdisk命令对/dev/sdb进行分区 B. 先对/dev/sdb5和/dev/sdb6进行格式化, 文件系统为btrfs C. 使用btrfs filesystem show命令查看所有的btrfs类型的分区 D. 发现磁盘不够, 希望扩展该btfs文件系统的大小, 阅读全文
摘要:
1. tar xzvf linux major minor VERSION.tar.gz C /usr/src 2. cd /usr/src 3. ln sv linux major minor VERSION linux 4. make allnoconfig 5. make menuconfig 阅读全文
摘要:
nginx配置文件 1. alias的作用就是转发 相当于一个location块接收到了一个请求, 通过alias重新指定URL后面的资源路径, 在不通知浏览器的情况下, 在服务器内部转发alias之后的URL 2. 注意: 在httpd中的alias不是转发, 而是一个根切换 3. 在书写loca 阅读全文
摘要:
前提条件 1. glibc static 2. glibc devel 3. libencrypt devel 步骤 + 下载busybox源文件 + tar zxvf busybox major minor VERSION.tar.gz C /usr/src + ln sv busybox maj 阅读全文
摘要:
\ \ This is the main Apache server configuration file. It contains the \ configuration directives that give the server its instructions. \ See for det 阅读全文
摘要:
关于网关的Misc + 两台计算机, 可以ping通呢? 阅读全文
摘要:
``` o / : 2GB o /boot: 200MB o /usr : 4GB o /var : 2GB o /tmp : 1GB o swap : 1GB o /home: 5GB,并且使用 LVM 模式建置 创建共享目录 这五个朋友的共享目录建置于 /home/vbirdgroup 这个目录 阅读全文
摘要:
什么是编译进内核与制作成模块 + 编译进内核意味着内核对这一类的功能不会在依赖其他的东西, 说白了就是所谓静态编译, 内核在启动的时候就会拥有这一部分的功能, 但是这样内核的体积就会变大 + 编译成模块, 其实就是指制作成动态链接库, 在内核需要这一部分的功能的时候, 内核调用一个函数的声明, 这样 阅读全文
摘要:
PXE与Kickstart无人值守安装 + Using NAT connection mode + ifconfig eth0 172.16.100.10 + setenforce 0 + service iptables stop + yum install y syslinux tftp ser 阅读全文
摘要:
vcl常用配置 不缓存摸一个资源 动静分离 配置虚拟主机 此时缓存是否命中 将cookie绑定的私有缓存转为共有缓存 健康检测 配置拒绝请求 生产中一定要配置purge(清理缓存), 但是只能是机房中的, 同时对于miss的应该返回error 405 "Not in cache", 因为miss就表 阅读全文
摘要:
pacman使用 安装了系统时候, 应该立马使用pacman mirrors c China更新源, 再使用pacman Syyn更新系统 编辑/etc/pacman.conf添加 + pacman S package\_name 安装软件 + pacman Rsn package\_name 卸载 阅读全文
摘要:
set nocompatible set encoding=utf 8 set fileencodings=utf 8,chinese set tabstop=4 set cindent shiftwidth=4 set backspace=indent,eol,start autocmd File 阅读全文
摘要:
Windows Server 2012 R2 + 历史上的Server有2003 server, 2008 server, 2012 server + windows server 2012 r2对计算机的消耗比图形化的Linux要大, 但是笔记本上使用VMware使用也没有问题 windows操作 阅读全文
摘要:
windows入门 + /users/username/appdata/roaming/microsoft/windows/start menu/startup目录中的应用程序是在该用户登录时启动的 + /windows/system32目录存放的是大部分是类似于linux中的/sbin, 不要乱动 阅读全文
摘要:
VS Code插件 + vscode icons: 显示文件类型的图标 + project manager: 管理项目, 项目的保存加载与切换 + beautify: 控制缩进 + code runner: 执行代码 + debugger for chrome + eslint: 代码规范检测 + 阅读全文
摘要:
Powershell 可以使用powershell管理的服务 + share point, exchange, lync, windows azure, window server, system center, vmware, sql server, visual studio, 硬件 + .NE 阅读全文
摘要:
PowerShell + cmdlets: Verb Noun的命令形式, Verb一般是set, get, start, stop, invoke, 使用get verb显示所有的动词 + 通过别名机制, 提供了Windows与Unix的命令 + 可以使用windows原生的命令(mspaint[ 阅读全文
摘要:
powershell(2) 帮助系统(显示出来的参数语法要比Unix中help复杂) 1. save help destinationpath c:\help 2. update help force sourcepath c:\help 3. get command noun \ log\ ver 阅读全文