系列文章目录
提示:这里可以添加系列文章的所有文章的目录,目录需要自己手动添加
例如:第一章 Python 机器学习入门之pandas的使用
提示:写完文章后,目录可以自动生成,如何生成可参考右边的帮助文档
文章目录
- 系列文章目录
- 前言
- 一、修改密码
- 二、安装casaos
- 三、进行docker镜像源测试,替换docker镜像源
- 四、安装ttyd
- 1.hinas源安装
- 1.1 官源gpg密钥
- 1.2更新源节点
- 2.使用备份deb源安装ttyd
- 五、安装自动挂载命令
- 总结
前言
以安装casaos为中心的ubuntu作为nas小主机设置
本文是在小主机安装好了Ubuntu系统后的设置
本文以香橙派P3b作为示例
一、修改密码
# 香橙派默认登录用户名密码 orangepi orangepi
sudo passwd root
sudo passwd orangepi
修改默认密码防止别人登录。
二、安装casaos
curl -fsSL https://get.casaos.io | sudo bash
三、进行docker镜像源测试,替换docker镜像源
bash <(curl -sSL https://gitee.com/xjxjin/scripts/raw/main/check_docker_registry.sh)
四、安装ttyd
1.hinas源安装
1.1 官源gpg密钥
curl -fsSL https://www.ecoo.top/update/soft_init/histb.gpg |apt-key add -
1.2更新源节点
海纳思系统提供以下三个更新源的节点,你可以自行切换,以获得更快的下载速度。
- 节点源1
echo "deb https://node.histb.com:9088/update/repo/$(dpkg --print-architecture) histb main" > /etc/apt/sources.list.d/histb.list
- 节点源2
echo "deb https://node2.histb.com/update/repo/$(dpkg --print-architecture) histb main" > /etc/apt/sources.list.d/histb.list
- 节点源3
echo "deb https://node3.histb.com:9088/update/repo/$(dpkg --print-architecture) histb main" > /etc/apt/sources.list.d/histb.list
上面三句任选其一,然后:
apt-get update
apt-get upgrade
2.使用备份deb源安装ttyd
wget https://github.com/xjxjin/scripts/raw/main/ttyd-histb_package.tar.gz -O- | tar xzf - -C /tmp && sudo dpkg -i /tmp/ttyd-histb*.deb
或者
wget https://github.com/xjxjin/scripts/raw/main/ttyd-histb_package.tar.gz -O- | tar xzf - -C /tmp && sudo apt install /tmp/ttyd-histb*.deb
五、安装自动挂载命令
sudo wget -O /usr/sbin/automount https://github.com/xjxjin/scripts/raw/main/automount && sudo chmod +x /usr/sbin/automount
输入以下命令可以手动卸载和挂载
automount -u
automount -a
系统会将你的磁盘自动挂载到 /mnt/sda1 或者 /mnt/mmcblk1p1
总结
提示:这里对文章进行总结:
例如:以上就是今天要讲的内容,本文仅仅简单介绍了pandas的使用,而pandas提供了大量能使我们快速便捷地处理数据的函数和方法。