电视盒子的刷机比较一般分布在几大盒子论坛,但很有意思的是,玩客云刷机笔记靠前的几篇大多指向了张大妈。记得之前购买这货的时候也是在张大妈被种的草,这么一想倒也算是有始有终。刷机的软件与流程几篇教程都写得比较详细,这里就不另行展开了,只是记录一下个人刷机后的一些具体操作。

初始设置

首次登陆的时候会要求重设密码,然后选择shell的版本,bash与zsh任选,好像zsh更偏向mac风格,一般习惯用linux的可以优先考虑bash。

时间设置

//检查时间输入命令
date -R
//如果时区及时间不对,输入命令
cp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
//再次检查时间
date -R

切换软件源

前置总结!!!注意系统版本号!!!

本身这一步不是必须的,但因为默认的源在国外,而国外的部分站点从国内线路访问或者容易被墙,或者速度难以忍受,所以切换成国内的源,是一个普遍的做法。换源的操作是去操作/etc/apt/sources.list这个文件,张大妈上摘录代码如下:

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free

然而加入list文件后并没有产生什么效果,仔细看了一下该文件的原始内容,发现系统版本不同,本机系统版本为”bookworm”,而张大妈上代码的系统版本为“bullseye”,通一修改后速度明显快了很多。

deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
#deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware

deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
#deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware

deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
#deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware

deb http://security.debian.org/ bookworm-security main contrib non-free non-free-firmware
#deb-src http://security.debian.org/ bookworm-security main contrib non-free non-free-firmware

更新软件

换源是大头,更新系统,就一个命令完事:apt update

安装CASAOS

CasaOS 是一个基于 Docker 生态系统的开源家庭云系统,为家庭场景而设计。它致力于打造世界上最简单、最容易使用、最优雅的家庭云系统。其实本身很多软件都自带可视化面板,CasaOS的方便之处在于它一键实现挂载硬盘,配置docker环境,与之相比,可视化面板倒更像个赠品。下面就开始安装CASAOS,输入这条命令后等待系统自动安装:

wget -qO- https://get.casaos.io | bash

卸载面板的指令,慎用:

casaos-uninstall

安装完成后在浏览器通过玩客云ip访问,例如192.168.1.200。

安装qb

首先是安装指令:

apt install qbittorrent-nox
//执行下面的命令更新服务:
systemctl daemon-reload
//这是关于这个软件常用的命令
//启动qb
service qbittorrent start
//关闭qb
service qbittorrent stop
//查看qb状态
service qbittorrent status
//开机自启
systemctl enable qbittorrent
//关闭开机自启
systemctl disable qbitorrent

修改配置文件:

nano /etc/systemd/system/qbittorrent.service

/*
[Unit]
Description=qBittorrent Daemon Service
After=network.target

[Service]
User=root
ExecStart=/usr/bin/qbittorrent-nox
ExecStop=/usr/bin/killall -w qbittorrent-nox

[Install]
WantedBy=multi-user.target
*/

访问如下地址:
玩客云的IP:8080(例如192.168.1.200:8080),进入WebUI,用户名admin,密码adminadmin,可以自行修改密码的。

修改灯的颜色

利用指令修改颜色为蓝色,调整echo后面的参数,可以修改灯的颜色:

echo "default-on" >/sys/class/leds/onecloud\:blue\:alive/trigger
echo "none" >/sys/class/leds/onecloud\:green\:alive/trigger
echo "none" >/sys/class/leds/onecloud\:red\:alive/trigger

如果希望保留设置,可以将这3行命令,放入/etc目录下的rc.local文件中。主要不要误删最后的exit 0语句:

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

echo "default-on" >/sys/class/leds/onecloud\:blue\:alive/trigger
echo "none" >/sys/class/leds/onecloud\:green\:alive/trigger
echo "none" >/sys/class/leds/onecloud\:red\:alive/trigger

exit 0

遇到异常退出的时候,linux会生成一个.rc.local.swp的备份文件,如果遇到打开这个文件时无法直接打开的情况,可以尝试删除掉swp文件,就可以了。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。