生活在宁静的角落 terry
Windows 自动添加 共享打印机
使用下面的标本,保存为*.bat 文件
@echo off echo Add Printer echo .... sc config spooler start= auto net stop spooler & net start spooler net use \\服务器\IPC$ "密码" /user:"用户" rundll32 printui.dll,PrintUIEntry /in /n "\\服务器 …点击查看更多…
利用Word 链接博客,进行发布
nginx+ php 配置 access denied
之前配置nginx+php的时候,每次,访问html页面是正常的,但是一旦访问php的页面就出现acces denied.
后来发现是nginx配置问题/etc/nginx/conf.d/default.conf
server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/log/host.access.log main; location / { root /data …点击查看更多…
Open-vm tools
Centos7 安装vmware-tools 时提示没有network tools的包,
在网上查了下,如果不想安装networks tools的话,可以选择安装open-vm-tools
yum -y install open-vm-tools点击查看更多…
centos 修改时区
1. 查看当前时区
date -R
2. 修改设置时区
方法(1)
tzselect
方法(2) 仅限于RedHat Linux 和 CentOS系统
timeconfig
方法(3) 适用于Debian
dpkg-reconfigure tzdata
方法(4)
(将Asia/shanghai-上海时区写入当前时区)#cp -f /usr/share …
点击查看更多…