AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-174269

ManuelSchneid3r's questions

Martin Hope
ManuelSchneid3r
Asked: 2022-07-14 02:15:08 +0800 CST

关于 debian 衍生产品的 Albert 存储库 GPG 关键问题

  • 5

由于 OBS 发布的密钥仅在大约两年内有效,可能会出现几个问题(主要是 EXPKEYSIG)。

apt albert
  • 1 个回答
  • 57 Views
Martin Hope
ManuelSchneid3r
Asked: 2021-05-12 22:29:34 +0800 CST

可写的 samba 共享最终变为只读

  • 5

我在我的服务器 (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
docker samba
  • 2 个回答
  • 979 Views
Martin Hope
ManuelSchneid3r
Asked: 2021-05-05 02:25:17 +0800 CST

Albert 热键的问题

  • 5

Albert 在某些系统上可能会遇到这样的问题:

  • 设置热键被拒绝
  • 不允许使用特定的热键
  • 利基系统 XYZ 的热键问题
  • 无法设置单个修饰符热键
  • 设置的热键不起作用(Wayland?)

对此可以做些什么?

linux hotkeys
  • 1 个回答
  • 348 Views
Martin Hope
ManuelSchneid3r
Asked: 2021-04-08 11:57:44 +0800 CST

Dockerized Pi-Hole 破坏了其余容器的 DNS。如何解决?

  • 5

我刚刚在我的 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 再次工作?

docker
  • 1 个回答
  • 247 Views
Martin Hope
ManuelSchneid3r
Asked: 2021-02-26 14:50:25 +0800 CST

如何让 Albert 采用我系统的小部件主题?

  • 5

尽管我使用 ArcDark 主题,但在我的 Gnome 桌面上,Albert 小部件看起来像这样:

在此处输入图像描述

如何让 Albert 采用 GTK 主题?

albert
  • 1 个回答
  • 30 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-11-29 03:42:42 +0800 CST

在另一种 shell 类型下运行的 shell 脚本中的奇怪 shell 提示符 (PS)

  • 5

当我运行#!/bin/sh包含set -o xtrace交互式脚本的脚本时,zsh我得到的输出看起来很奇怪%F{red}>> %f。显然使用的是我的 PS4,.zshrc但解释 shell 是 sh。我怎样才能避免这种情况?

zsh prompt
  • 1 个回答
  • 23 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-11-04 08:51:33 +0800 CST

为什么我的图标无法在 albert 启动器中正确显示?

  • 5

在某些情况下,Albert 启动器无法正确显示图标。要么系统主题没有被选中,要么图标只是空的。我应该怎么做才能让 Albert 正确显示图标?

icons themes
  • 1 个回答
  • 330 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-09-08 04:35:54 +0800 CST

Albert 热键问题

  • 6

在 Ubuntu 20.04 上,键绑定 Super+X 不起作用。钥匙有时有效,有时无效。有什么问题,我应该怎么做才能正确设置热键?

albert
  • 1 个回答
  • 364 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-15 13:31:29 +0800 CST

Albert:为什么有些应用程序没有显示在结果中?

  • 5

我意识到我系统上安装的一些应用程序无法使用 albert 访问。为什么我查询它们时它们不显示?

albert
  • 1 个回答
  • 48 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-15 13:25:51 +0800 CST

阿尔伯特在 HiDPI 屏幕上看起来很奇怪

  • 5

我有一个高分辨率显示器。当我启动 Albert 时,前端看起来非常小。我能否以某种方式使 Albert 具有与我的桌面环境相同的缩放比例?

albert
  • 1 个回答
  • 80 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-15 13:19:49 +0800 CST

我可以让 Albert 忽略某些文件/文件夹吗?

  • 5

文件扩展名索引了大量我实际上不需要的文件。我可以告诉 albert 忽略特定的文件和子目录吗?

albert
  • 1 个回答
  • 335 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-15 13:10:34 +0800 CST

如何在阿尔伯特上避免黑色边框/背景,即没有透明度?

  • 5

我观察到一些奇怪的行为,阿尔伯特后面有一个大黑匣子。阿尔伯特应该只包含那个黑盒子中间的圆角矩形场 - 黑盒子不应该在那里。它看起来像这样:

在此处输入图像描述

albert
  • 1 个回答
  • 38 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-15 06:26:51 +0800 CST

使用 albert 打开文件项时使用哪个应用程序?

  • 5

当我打开一个文件 X 应用程序 Y 用于打开然后文件。但我更希望看到 albert 使用应用程序 Z。如何设置 albert 用于打开特定文件的默认应用程序?

linux albert
  • 1 个回答
  • 115 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-15 05:56:20 +0800 CST

如何安装阿尔伯特键盘启动器?

  • 8

我想安装一个类似于我在 macOS 中的启动器,它可以搜索文件和文件夹并执行各种操作,这是导航文件系统而不是手动搜索文件的更好方法。我知道存在一个名为 Albert 的启动器,但我不知道如何安装它,作为一个新的 Linux 用户,他们网站上的说明几乎是胡言乱语。

请问有什么帮助吗?

albert
  • 1 个回答
  • 7440 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-14 08:08:49 +0800 CST

为什么阿尔伯特结果项目没有按照我喜欢的方式排序?

  • 6

我想将应用程序扩展的结果项移到前面。阿尔伯特似乎对物品没有特别的顺序,实际上我不喜欢这个事实。我怎样才能实现类似的目标?

albert
  • 1 个回答
  • 100 Views
Martin Hope
ManuelSchneid3r
Asked: 2020-06-05 07:36:11 +0800 CST

如何自动启动 Albert?

  • 6

由于我希望阿尔伯特始终运行,我希望阿尔伯特从桌面登录开始。

如何让阿尔伯特在登录时自行启动?

linux autostart
  • 1 个回答
  • 1086 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何减少“vmmem”进程的消耗?

    • 11 个回答
  • Marko Smith

    从 Microsoft Stream 下载视频

    • 4 个回答
  • Marko Smith

    Google Chrome DevTools 无法解析 SourceMap:chrome-extension

    • 6 个回答
  • Marko Smith

    Windows 照片查看器因为内存不足而无法运行?

    • 5 个回答
  • Marko Smith

    支持结束后如何激活 WindowsXP?

    • 6 个回答
  • Marko Smith

    远程桌面间歇性冻结

    • 7 个回答
  • Marko Smith

    子网掩码 /32 是什么意思?

    • 6 个回答
  • Marko Smith

    鼠标指针在 Windows 中按下的箭头键上移动?

    • 1 个回答
  • Marko Smith

    VirtualBox 无法以 VERR_NEM_VM_CREATE_FAILED 启动

    • 8 个回答
  • Marko Smith

    应用程序不会出现在 MacBook 的摄像头和麦克风隐私设置中

    • 5 个回答
  • Martin Hope
    Vickel Firefox 不再允许粘贴到 WhatsApp 网页中? 2023-08-18 05:04:35 +0800 CST
  • Martin Hope
    Saaru Lindestøkke 为什么使用 Python 的 tar 库时 tar.xz 文件比 macOS tar 小 15 倍? 2021-03-14 09:37:48 +0800 CST
  • Martin Hope
    CiaranWelsh 如何减少“vmmem”进程的消耗? 2020-06-10 02:06:58 +0800 CST
  • Martin Hope
    Jim Windows 10 搜索未加载,显示空白窗口 2020-02-06 03:28:26 +0800 CST
  • Martin Hope
    andre_ss6 远程桌面间歇性冻结 2019-09-11 12:56:40 +0800 CST
  • Martin Hope
    Riley Carney 为什么在 URL 后面加一个点会删除登录信息? 2019-08-06 10:59:24 +0800 CST
  • Martin Hope
    zdimension 鼠标指针在 Windows 中按下的箭头键上移动? 2019-08-04 06:39:57 +0800 CST
  • Martin Hope
    jonsca 我所有的 Firefox 附加组件突然被禁用了,我该如何重新启用它们? 2019-05-04 17:58:52 +0800 CST
  • Martin Hope
    MCK 是否可以使用文本创建二维码? 2019-04-02 06:32:14 +0800 CST
  • Martin Hope
    SoniEx2 更改 git init 默认分支名称 2019-04-01 06:16:56 +0800 CST

热门标签

windows-10 linux windows microsoft-excel networking ubuntu worksheet-function bash command-line hard-drive

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve