渊澄

川流不息,渊澄取映

宝塔面板可以运行在各类Linux系统中,方便我们搭建和管理网站。现在演示一下如何在GoogleCloud中安装宝塔面板。

首先我们进入Compute Engine中创建一个VM实例,为了尽可能的提升访问速度,我们将区域选择为香港。,启动磁盘选择Centos7。

TIM截图20181102140908.jpg

创建时在防火墙中勾选允许HTTP及HTTPS流量。

TIM截图20181102140930.jpg

接着我们进入VPC网络,在外部IP地址中我们将"临时"改为"静态"。

TIM截图20181102141251.jpg

在防火墙规则中,我们将出入站的所有端口及协议开放,并应用到所有实例。

TIM截图20181102141349.jpg

之后我们用SSH登陆到我们创建的VM实例,

TIM截图20181102141447.jpg

并运行以下命令进行安装:

sudo su

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh

根据提示选择安装功能,等安装结束会提示面板登陆地址、用户名及密码。

我们根据给出的安装信息就可以登陆到面板来创建和管理网站了。

KMS服务器可以用来激活VOL版本(俗称大客户版本)的Windows系统及Office办公软件。

每次激活可用180天,如果KMS服务器不瘫痪,到期后会自动续期,所以也算是永久激活。

如需使用KMS服务器来激活,记得下载和安装VOL版本的Windows及Office,大家可以去【msdn我告诉你】搜索下载。

我的KMS服务器是搭建在家里的路由器上面的,地址是 home.miaoyang.win,目前可以保证其稳定性,如果因服务器问题出现无法激活的状态,我会尽快解决。

切记以管理员身份运行CMD!

1、Office 手动激活命令:

cd C:\Program Files\Microsoft Office\Office16(Office 安装目录,32位和64位的安装目录不同,以你的安装目录为准)
cscript ospp.vbs /sethst:home.miaoyang.win
cscript ospp.vbs /act
cscript ospp.vbs /dstatus

2、Windows 手动激活命令:

slmgr.vbs /skms home.miaoyang.win:1688
slmgr.vbs /ato
slmgr.vbs /xpr

切记下载VOL大客户版本的windows及office,VOL版本的镜像名一般是以SW开头且文件名中一般含有VL字样。

今天给客户安装中晶的FS3125S扫描仪,在网上找了一圈也没下载到驱动,现在从机器自带的光盘里拷贝了一份,上传到了百度云,有需要的朋友可以前往下载。该驱动支持winXP到win10。

xc6981855.jpg

[reply]123[/reply]

Homeassistant在2018年10月27日编译了最新的hassbian镜像,将镜像直接写入树莓派的TF卡即可自动安装Homeassistant,并支持hassbian-config脚本来安装其他组件,适合手头有树莓派的朋友快速安装Homeassistant系统。

该镜像有1.86GB,下载后无需解压,可用win32diskimager等软件直接将img文件写入TF卡,然后树莓派连接网线,通电启动,整个安装过程视网速而定,大约需要10-20分钟不等。如需设置WIFI等信息,可用Putty登入(默认用户为pi,密码为raspberry),然后执行sudo rasp-config来进行设置。

Github下载地址:https://github.com/home-assistant/pi-gen/releases/latest

稍后我会将镜像上传到百度盘,方便国内朋友下载。

我使用的是orange pi zero 512M的版本,其他版本的orange pi 类似。

首先前往armbian网站下载最新版的Debian_stretch镜像并写入TF卡,将机器接入网线然后通电开机。

登录路由器或手机下载Fing软件,找到orange pi的IP地址,然后用Putty登录root账户,默认密码是1234。

首次登录系统会要求修改root密码以及创建一个新用户(下面以pi用户名为例进行演示),我们根据提示进行操作就可以了。

接下来我们输入armbian-config命令来进行连接WIFI,修改时区,修改网络名称,禁用IPV6等操作,根据菜单提示一步一步进行即可。设置完之后我们reboot一次机器。

等机器重启完之后我们用root登录,然后进行以下操作:

apt update
apt upgrade -y
apt install sudo net-tools -y

将我们创建的用户加入到sudo组

nano /etc/sudoers

将pi ALL=NOPASSWD: ALL插入到相应位置。

然后我们切换到之前创建的pi用户来进行下面的操作

su pi
sudo apt install wget screen git curl -y
sudo wget https://github.com/home-assistant/hassbian-scripts/releases/download/v0.6/hassbian-scripts_0.6.deb
sudo apt install bluetooth avahi-daemon python3-venv  python3-pip python3-dev libbluetooth-dev build-essential libssl-dev libffi-dev  python-dev libudev-dev -y
sudo dpkg -i  hassbian-scripts_0.6.deb;
sudo hassbian-config show;
sudo mv /opt/hassbian/suites/install_homeassistant.sh /opt/hassbian/suites/install_homeassistant.sh.bak
sudo nano /opt/hassbian/suites/install_homeassistant.sh

然后复制以下内容并保存退出:

#!/bin/bash
function homeassistant-show-short-info {
    echo "Home Assistant install script for Hassbian"
}
function homeassistant-show-long-info {
    echo "Installs the base homeassistant package onto this system."
}
function homeassistant-show-copyright-info {
    echo "Copyright(c) 2017 Fredrik Lindqvist <https://github.com/Landrash>";
}
function homeassistant-install-package {
homeassistant-show-short-info
homeassistant-show-copyright-info
echo "Changing to the homeassistant user"
sudo adduser --system homeassistant
sudo addgroup homeassistant
sudo chown -R homeassistant:homeassistant /srv/homeassistant
sudo su -s /bin/bash homeassistant
echo "Creating Home Assistant venv"
python3 -m venv /srv/homeassistant
echo "Changing to Home Assistant venv"
source /srv/homeassistant/bin/activate
echo "Installing latest version of Home Assistant"
pip3 install pip==18.1 netdisco setuptools wheel
pip3 install homeassistant
echo "Deactivating virtualenv"
deactivate
EOF
echo "Enabling Home Assistant service"
systemctl enable home-assistant@homeassistant.service
sync
echo "Disabling the Home Assistant install script"
systemctl disable install_homeassistant
systemctl daemon-reload
echo "Starting Home Assistant"
systemctl start home-assistant@homeassistant.service
cd
ip_address=$(ifconfig ' awk -F':' '/inet addr/&&!/127.0.0.1/{split($2,_," ");print _[1]}')
echo
echo "Installation done."
echo
echo "Your Home Assistant installation is running at $ip_address:8123 or if prefered http://hassbian.local:8123";
echo
echo "To continue have a look at https://home-assistant.io/getting-started/configuration/";
echo
echo "If this script failed then this Raspberry Pi most likely did not have a fully functioning internet connection."
echo "If you have issues with this script, please say something in the #Hassbian channel on Discord."
echo
return 0
}
# Make this script function as it always has if run standalone, rather than issue a warning and do nothing.
[[ $0 == "$BASH_SOURCE" ]] && homeassistant-install-package

接下来运行

sudo hassbian-config install homeassistant

等停止之后输入

exit

安装会继续进行。

等到安装结束之后运行下面命令:

sudo chown -R homeassistant:homeassistant /srv/homeassistant;
sudo systemctl stop home-assistant@homeassistant.service;
sudo su -s /bin/bash homeassistant;
source /srv/homeassistant/bin/activate;
hass

直到我们能正常打开orange pi ip:8123看到网页,整个安装过程结束。

之后我们可以使用sudo hassbian-config show来安装samba、mqtt等服务。