dunes

joined 1 week ago
[–] dunes@feddit.org 1 points 6 hours ago* (last edited 6 hours ago)

There is an issue on this GitHub repo that was posted on November 16 https://github.com/bitwarden/clients/issues/12022. But really hope they fix it soon.

[–] dunes@feddit.org 1 points 6 hours ago

It is hope they fix it soon.

[–] dunes@feddit.org 2 points 2 days ago (1 children)

When I click the Copy icon, it copies the old password instead of the new one. But it also updates for me if i click on another item. Did this problem also occur for you with the latest update?

[–] dunes@feddit.org 6 points 2 days ago

When you update anything in a login item, such as the username or password, and click Save it does not update. You must click Edit agin and then click Save again for it to update.

[–] dunes@feddit.org 9 points 2 days ago (2 children)

Its list on their website as supported

[–] dunes@feddit.org 11 points 2 days ago* (last edited 2 days ago) (2 children)

Doesn't it display in the browser the same way as images?

Just click on the video icon.

39
submitted 2 days ago* (last edited 6 hours ago) by dunes@feddit.org to c/linux@lemmy.ml
 

Does anyone else have this issue with the Flatpak version of Bitwarden.

Explanation: When you update anything in a login item, such as the username or password, and click Save it does not update. You must click Edit agin and then click Save again for it to update.

There is an issues on the Bitwarden GitHub.

[–] dunes@feddit.org 2 points 6 days ago (1 children)

I really liked these songs:

Fever 333 - Do or Die

Keny Arkana - La Rage (A sham i don't speak frensh)

The Shizit - Soundtrack for the Revolution

The only artists I had heard of were Fever 333. Thanks for opening my eyes.

 

I like Immortal Technique and the album Let's Get Free by dead prez.

[–] dunes@feddit.org 1 points 1 week ago* (last edited 1 week ago)

It seems like an odd choice if it's not a mistake to put it on the first page and it's not just a HTTP warning it's an SSL warning that appears quite scary on Chromium browsers.

But cool to know that apt repos don't use SSL i knew they verified via signature but fought they had both.

[–] dunes@feddit.org 1 points 1 week ago* (last edited 1 week ago)

It's the download link on the fort page of debian.org. Has it always been like that.

56
submitted 1 week ago* (last edited 6 days ago) by dunes@feddit.org to c/linux@lemmy.ml
 

It's fixed now.

Before it worked.

[–] dunes@feddit.org 2 points 1 week ago

Thanks for the suggestion. This is what I ended up doing, and it works really well.

[–] dunes@feddit.org 1 points 1 week ago

Thanks looks a lot simpler to setup.

[–] dunes@feddit.org 1 points 1 week ago* (last edited 1 week ago)

Still doesn't work. My wireguard conf file looks like this.

Change the HOMENET= to my internal ip range i found with ip addr show.

[Interface]
PrivateKey = MyPrivateKey
Address = 1.1.1.1
DNS = 1.1.1.1

PostUp = DROUTE=$(ip route | grep default | awk '{print $3}'); HOMENET=172.16.0.0/12; ip route add $HOMENET via $DROUTE;iptables -I OUTPUT -d $HOMENET -j ACCEPT; iptables -A OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT

PreDown = HOMENET=172.16.0.0/12; ip route delete $HOMENET; iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT; iptables -D OUTPUT -d $HOMENET -j ACCEPT

[Peer]
PublicKey = MyPublicKey
AllowedIPs = 0.0.0.0/0
Endpoint = 1.1.1.1
 

My solution uses qBittorrent with Glutun and it works great. My Docker Compose file is based on this one https://github.com/TechHutTV/homelab/blob/main/media/arr-compose.yaml. I simply removed some of the services I didn't need. I recommend watching his YouTube video(Same video on Odysee) if you can't get it to work.


I am trying to have a QBitTorrent Docker container that is accessible on my local network and connects to WireGuard. I know this is a basic question, and I'm sorry if I'm wasting your time. I am using a separate user for this that i have add to the docker group.

I can't access the web interface what have i configured wrong.

Here is my docker compose file.

***
services:
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    environment:
      - PUID=1001
      - PGID=1001
      - TZ=Europe/London
      - WEBUI_PORT=8080
      - TORRENTING_PORT=6881
    volumes:
      - /home/torrent/torrent/:/config
      - /home/torrent/download/:/downloads 
    network_mode: service:wireguard
    depends_on:
      - wireguard
    restart: always

  wireguard:
    image: lscr.io/linuxserver/wireguard
    container_name: wireguard
    cap_add:
    - NET_ADMIN
    - SYS_MODULE
    environment:
    - PUID=1001
    - PGID=1001
    - TZ=Europe/London
    ports:
    - 51820:51820/udp
    volumes:
    - /home/torrent/wireguard/:/config
    - /home/torrent/wireguard/london.conf/:/config/wg0.conf
    sysctls:
    - net.ipv4.conf.all.src_valid_mark=1
    restart: always

view more: next ›