由于 OBS 发布的密钥仅在大约两年内有效,可能会出现几个问题(主要是 EXPKEYSIG)。
ManuelSchneid3r's questions
我在我的服务器 (Pi4) 上设置 docker samba 服务器 (dperspon/samba) 时遇到问题。可写的 samba 共享似乎是只读的。但是行为很奇怪。当我使用 MacOS Finder 将文件放入共享时,会创建一个文件,但它保持为空。操作失败,并显示以下注释The operation could not be completed because an unknown error occurred (error -50)。使用 CLI 一切都很好。存储(/媒体/数据)是 ExFat 格式的。以下撰写文件有什么问题?
samba:
image: dperson/samba
container_name: samba
command: -g "log level = 2" -u "root;PASSWORD" -s "all;/smb/all;yes;no;no;root"
volumes:
- /media/data:/smb/all
environment:
- TZ=Europe/Berlin
- WORKGROUP=media
#- USERID=0
#- GROUPID=0
ports:
- 139:139
- 445:445
restart: unless-stopped
这是容器中生成的 conf。
pam password change = yes
map to guest = bad user
usershare allow guests = yes
create mask = 0664
force create mode = 0664
directory mask = 0775
force directory mode = 0775
force user = smbuser
force group = smb
follow symlinks = yes
load printers = no
printing = bsd
printcap name = /dev/null
disable spoolss = yes
strict locking = no
aio read size = 0
aio write size = 0
vfs objects = catia fruit recycle streams_xattr
recycle:keeptree = yes
recycle:maxsize = 0
recycle:repository = .deleted
recycle:versions = yes
# Security
client ipc max protocol = SMB3
client ipc min protocol = SMB2_10
client max protocol = SMB3
client min protocol = SMB2_10
server max protocol = SMB3
server min protocol = SMB2_10
# Time Machine
fruit:delete_empty_adfiles = yes
fruit:time machine = yes
fruit:veto_appledouble = no
fruit:wipe_intentionally_left_blank_rfork = yes
[all]
path = /smb/all
browsable = yes
read only = no
guest ok = no
veto files = /.apdisk/.DS_Store/.TemporaryItems/.Trashes/desktop.ini/ehthumbs.db/Network Trash Fold
delete veto files = yes
valid users = root
我刚刚在我的 Pi4 上安装了 PiHole。很酷的事情。现在我想编写一个新的 docker 镜像,其中包含来自 GitHub 的 git clone,其结尾为:
fatal: unable to access 'https://github.com/…/': Could not resolve host: github.com
pihole docker-compose 服务:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "80:80/tcp"
- "443:443/tcp"
dns:
- 127.0.0.1 # self
- 10.0.0.1 # fritzbox
- 8.8.8.8 # google
environment:
TZ: 'Europe/Berlin'
WEBPASSWORD: …
ServerIP: '10.0.0.2'
VIRTUAL_HOST: 'pihole'
REV_SERVER: 'true' # for local name resolutoin
REV_SERVER_CIDR: '10.0.0.0/24' # lan
REV_SERVER_TARGET: '10.0.0.1' # router
REV_SERVER_DOMAIN: 'fritz.box' # local domain
WEBUIBOXEDLAYOUT: 'traditional'
# Volumes store your data between container upgrades
volumes:
- './etc/pihole/:/etc/pihole/'
- './etc/dnsmasq.d/:/etc/dnsmasq.d/'
# Recommended but not required (DHCP needs NET_ADMIN)
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
cap_add:
- NET_ADMIN
restart: unless-stopped
所有 docker 容器都在默认网络(172...)中运行,我的路由器是 DHCP 服务器,pi 是 DNS 服务器,路由器(fritzbox)配置为返回 RPis IP 作为本地 DNS 服务器。
如何使 docker 容器内的 DNS 再次工作?
在 Ubuntu 20.04 上,键绑定 Super+X 不起作用。钥匙有时有效,有时无效。有什么问题,我应该怎么做才能正确设置热键?
我意识到我系统上安装的一些应用程序无法使用 albert 访问。为什么我查询它们时它们不显示?
我有一个高分辨率显示器。当我启动 Albert 时,前端看起来非常小。我能否以某种方式使 Albert 具有与我的桌面环境相同的缩放比例?
文件扩展名索引了大量我实际上不需要的文件。我可以告诉 albert 忽略特定的文件和子目录吗?
我想安装一个类似于我在 macOS 中的启动器,它可以搜索文件和文件夹并执行各种操作,这是导航文件系统而不是手动搜索文件的更好方法。我知道存在一个名为 Albert 的启动器,但我不知道如何安装它,作为一个新的 Linux 用户,他们网站上的说明几乎是胡言乱语。
请问有什么帮助吗?
我想将应用程序扩展的结果项移到前面。阿尔伯特似乎对物品没有特别的顺序,实际上我不喜欢这个事实。我怎样才能实现类似的目标?