Ubuntu24.10安装gitlab18.4
Created|Updated|炒
|Word Count:159|Reading Time:1mins|Post Views:
启用SSH并打开防火墙端口
1,安装基本依赖包:
sudo apt update
sudo apt install -y curl openssh-server ca-certificates tzdata perl
2,启用并启动 OpenSSH 服务器守护进程:
sudo systemctl enable –now ssh
3,安装后,打开防火墙端口
sudo ufw allow 22/tcp
sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
sudo ufw enable
添加GitLab包存储库
1,安装所需软件包sudo apt install -y curl
2,添加 GitLab 存储库
curl "https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh" | sudo bash
安装命令
sudo apt install gitlab-ee或者手动下载(安装包可以在以下网址找到):https://packages.gitlab.com/gitlab/gitlab-eeAuthor: xiaoxian
Copyright Notice: All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
Related Articles

2025-10-29
GSVTTS
我是5070TI,Win11。先去官网下载7z整合包,里面环境是配置好的,不建议手动配置环境,我就配置了好久还是失败了,然后启动weiui.bat,训练GPT和SoVits模型,并记下模型和.list文件位置如果你和我一样希望搞外国语输出,这一步你也可以看,再去下载BERT 模型 https://huggingface.co/tohoku-nlp/bert-base-japanese,和HuBERT模型,Hugging Face - rinna/japanese-hubert-base,模型最好下载到retrain modle,结束后安装词典,首先进入根目录,然后运行runtime\python.exe -m pip install “fugashi[unidic-lite]”,这会自动安装 fugashi 和一个小型日语词典 unidic-lite,如果你想要完整词典(更大更准),改成runtime\python.exe -m pip install “fugashi[unidic]”,然后额外运行runtime\python.exe -m unidic download 最后去tts infer.yaml修改配置文件custom,把模型位置改为你自己的文件位置。不要是文件夹,否则会报错primission denied,模型名字一定要是纯英文。配置Astrbot服务(这里就不提了一看就会的)配置插件

2025-12-16
Rustdesk
此blog主要用于处理Linux在熄屏状态下无法唤起的问题。通过命令行编辑systemd配置文件(可靠替代,无需Tweaks)这是一个更底层的配置,会覆盖GNOME设置,适用于所有情况。打开终端,编辑配置文件:sudo nano /etc/systemd/logind.conf(或用gedit/vim)。找到或添加以下行(如果有#注释,删除#):[Login]HandleLidSwitch=ignoreHandleLidSwitchExternalPower=ignore # 外接电源时忽略HandleLidSwitchDocked=ignore # 连接外部显示器时忽略ignore 表示合盖时无操作(不悬挂)。重启logind服务:sudo systemctl restart systemd-logind。ce5d753f43a42ad6f4f0efca

2025-11-22
Timeshift
真的建议每周备份一下
