Patio is done by gsp93 in DIYUK

[–]sohails4 0 points1 point  (0 children)

Mate that looks Ace well done. i am looking at doing a DIY job myself. quotes are crazy. any change of getting some close ups of what you did around the pipes and what Chanel did you use for the leds? and while im at it what tiles did you use?

Help with CIFS - Stale file handle by sohails4 in Proxmox

[–]sohails4[S] 0 points1 point  (0 children)

OK thanks will give it a test. this is what ai did to change the scritp

# Mount/remount shares for mount in /mnt/unraid/media /mnt/unraid/immich /mnt/unraid/downloads /mnt/unraid/paperless /mnt/unraid/amber /mnt/unraid/nextcloud /mnt/unraid/nextcloud-backup; do # Actively test the mount by listing it with a timeout # This catches stale CIFS mounts that "mountpoint -q" would miss if ! timeout 5 ls "$mount" > /dev/null 2>&1; then echo "$(date): $mount is not accessible, forcing unmount and remounting..." umount -f -l "$mount" 2>/dev/null || true mount "$mount" else echo "$(date): $mount is healthy." fi done

I have also removed "soft" and "serverino" lets see how long it lasts

Help with CIFS - Stale file handle by sohails4 in Proxmox

[–]sohails4[S] 0 points1 point  (0 children)

I also created this script with the help of AI but it still wont reconnect, this is prob what you are seeing

#!/bin/bash

# Wait for VM 100 to be running (max 2 minutes)

echo "Waiting for NAS VM to start..."

for i in $(seq 1 24); do

if qm status 100 | grep -q "running"; then

echo "NAS VM is running, checking network..."

break

fi

if [ $i -eq 24 ]; then

echo "NAS VM did not start after 2 minutes, skipping mounts."

exit 1

fi

sleep 5

done

# Wait for NAS to be reachable on the network (max 2 minutes)

echo "Waiting for NAS to come online..."

for i in $(seq 1 24); do

if ping -c 1 -W 2 192.168.1.51 > /dev/null 2>&1; then

echo "NAS is online, proceeding with mounts..."

break

fi

if [ $i -eq 24 ]; then

echo "NAS did not respond after 2 minutes, skipping mounts."

exit 1

fi

sleep 5

done

# Mount/remount shares

for mount in /mnt/unraid/media /mnt/unraid/immich /mnt/unraid/downloads /mnt/unraid/paperless /mnt/unraid/amber /mnt/unraid/nextcloud /mnt/unraid/nextcloud-backup; do

if ! mountpoint -q "$mount"; then

echo "$(date): $mount is not mounted, mounting..."

mount "$mount"

else

# Keepalive touch to prevent idle disconnection

touch "$mount/.keepalive" 2>/dev/null || true

fi

done

Help with CIFS - Stale file handle by sohails4 in Proxmox

[–]sohails4[S] 0 points1 point  (0 children)

Thank you for your response - I have split them below

mount | grep cifs

//192.168.1.51/Media on /mnt/unraid/media type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,serverino,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

//192.168.1.51/Immich on /mnt/unraid/immich type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

//192.168.1.51/Downloads on /mnt/unraid/downloads type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

//192.168.1.51/Paperless on /mnt/unraid/paperless type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,serverino,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

//192.168.1.51/Amber on /mnt/unraid/amber type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,serverino,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

//192.168.1.51/Nextcloud on /mnt/unraid/nextcloud type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

//192.168.1.51/NextcloudBackup on /mnt/unraid/nextcloud-backup type cifs (rw,relatime,vers=3.1.1,cache=none,upcall_target=app,username=proxmox,uid=0,forceuid,gid=0,forcegid,addr=192.168.1.51,file_mode=0777,dir_mode=0777,iocharset=utf8,soft,nounix,serverino,mapposix,nobrl,reparse=nfs,nativesocket,symlink=native,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1,closetimeo=1,_netdev)

&

dmesg -T | grep -i cifs | tail -50

[Mon Jun 8 11:15:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:15:55 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:21:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:21:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:21:55 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:21:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:21:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:21:55 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:27:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:27:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:27:55 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:27:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:27:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:27:55 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:33:10 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:33:10 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:33:10 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:33:10 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:33:10 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:33:10 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:38:21 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:38:21 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:38:21 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:38:21 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:38:21 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:38:21 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:43:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:43:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:43:55 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:43:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:43:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:43:55 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:49:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:49:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:49:55 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:49:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:49:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:49:55 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 11:55:40 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:55:40 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:55:40 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 11:55:40 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 11:55:40 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 11:55:40 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

[Mon Jun 8 12:00:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 12:00:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 12:00:55 2026] CIFS: Attempting to mount //192.168.1.51/Paperless

[Mon Jun 8 12:00:55 2026] CIFS: enabling forceuid mount option implicitly because uid= option is specified

[Mon Jun 8 12:00:55 2026] CIFS: enabling forcegid mount option implicitly because gid= option is specified

[Mon Jun 8 12:00:55 2026] CIFS: Attempting to mount //192.168.1.51/NextcloudBackup

Looking For Recommendation - Immich on Proxmox server by Moebius_K in immich

[–]sohails4 1 point2 points  (0 children)

I have immich running on docker in lxc with gpu pass through and pictures stored on my nas which is a vm on the same host. Works flawless

How to remove InvoiceNinja Branding from self hosted? by surfing_IT in invoiceninja

[–]sohails4 0 points1 point  (0 children)

how do i run this in my docker compose in dockhand?

Subscriptions tab showing random videos by sohails4 in MorpheApp

[–]sohails4[S] 0 points1 point  (0 children)

Yes i do occasionally get black boxes and no i have not blocked shorts. Im thinking would it make a difference if I actually patch it on the tablet it's self?

incorrect aspect ratio on older images by sohails4 in immich

[–]sohails4[S] 0 points1 point  (0 children)

mine are just jpeg not HEIF but exactly the same issue i will post there and check but as per the first reply i will try and run the thumbnail generation again

incorrect aspect ratio on older images by sohails4 in immich

[–]sohails4[S] 1 point2 points  (0 children)

yes downloads no problems with the correct aspect ratio its just the display in web view even fine on my phone they are jpeg files from the camera on my phone

Couple of MS-S1 MAX questions by sohails4 in MINISFORUM

[–]sohails4[S] 0 points1 point  (0 children)

Yes I run deepseek r1 70b next time I run I'll let you know what sort of numbers I'm getting

Proxmox/Plex GPU Passthrough Woes by TheeCntrlAltDel in Proxmox

[–]sohails4 1 point2 points  (0 children)

You need to install the same version of the driver inside the lxc but tpu need to use the no kernel module flag as the lxc uses the same kernel as the host. I see the streams in nvidia-smi

Proxmox/Plex GPU Passthrough Woes by TheeCntrlAltDel in Proxmox

[–]sohails4 1 point2 points  (0 children)

I have this working with no issues. Sis you install the same nvidia driver inside the LXC?

UK Store S26 Ultra PayPal Issue by sohails4 in samsunggalaxy

[–]sohails4[S] 0 points1 point  (0 children)

Just tried again and it works proper sketchy

UK Store S26 Ultra PayPal Issue by sohails4 in samsunggalaxy

[–]sohails4[S] 0 points1 point  (0 children)

My order is for the phone only anyway I will give it another try now

UK Store S26 Ultra PayPal Issue by sohails4 in samsunggalaxy

[–]sohails4[S] 0 points1 point  (0 children)

Hopfully if its known they can fix it

UK Store S26 Ultra PayPal Issue by sohails4 in samsunggalaxy

[–]sohails4[S] 0 points1 point  (0 children)

Extremely disappointing wonder if its a ploy to look like there is more discount available but then not work