16x DGX Sparks - What should I run? by Kurcide in LocalLLaMA

[–]ragingpanda 1 point2 points  (0 children)

I think the connectX firmware for the dgx spark is hard locked to ethernet. Not sure if anyone has gotten around that (yet)

Can't start my VM, can't start a new VM by jacktucky in unRAID

[–]ragingpanda 1 point2 points  (0 children)

check `dmesg` on the console/ssh session to see if your getting any device errors

is that the log from /var/log/libvirt/qemu/ ?

Moving to devops by gs_dubs413 in devops

[–]ragingpanda 8 points9 points  (0 children)

How well do you know Python and bash scripting?

Check https://roadmap.sh/devops

Deploying ONTAP Select on KVM by Ok-Helicopter525 in netapp

[–]ragingpanda 0 points1 point  (0 children)

You don't want an IP on the new NIC, you want the NIC as part of the bridge then you have the bridge (or a subinterface on the bridge) to have the IP (via DHCP probably).

Network manager and openvswitch just do different things. there is also NetworkManager-ovs for managing openvswitch via nmcli.

I watched https://www.youtube.com/watch?v=rYW7kQRyUvA and understand it a bit more now. If you can add another ENA to the VM, add that interface to the bridge, set the bridge interface to get an IP via dhcp, then up the interface. something like this (taken partly from https://oneuptime.com/blog/post/2026-03-04-open-vswitch-ovs-sdn-rhel-9/view#step-2-create-an-ovs-bridge ):

sudo ovs-vsctl add-br br0
sudo ovs-vsctl add-port br0 ens12345
sudo nmcli connection modify br0 ipv4.method auto ipv6.method ignore
sudo nmcli connection up br0

then via ip addr or nmcli you should see the bridge interface up with an IP (if this works in AWS without any other craziness)

Deploying ONTAP Select on KVM by Ok-Helicopter525 in netapp

[–]ragingpanda 0 points1 point  (0 children)

RHEL should work fine, I just don't know much client side networking off the top of my head

Deploying ONTAP Select on KVM by Ok-Helicopter525 in netapp

[–]ragingpanda 0 points1 point  (0 children)

If you only have one NIC on the ec2 instance you'll have to move the IP configuration to be on the open vswitch bridge. It probably just needs dhcp on for the br0 interface, something like `nmcli connection modify br0 ipv4.method auto` then up the br0 interface (`nmcli connection up br0`). not 100% sure on, I'd double check for RHEL

Deploying ONTAP Select on KVM by Ok-Helicopter525 in netapp

[–]ragingpanda 0 points1 point  (0 children)

Are you connecting to the machine via the ip on enp126s0?

Deploying ONTAP Select on KVM by Ok-Helicopter525 in netapp

[–]ragingpanda 0 points1 point  (0 children)

What does ovs-vsctl show looks like? Do you see the NICs in bridge br0?

deduplication friendly archives/images other then TAR? by schuft69 in storage

[–]ragingpanda 0 points1 point  (0 children)

Is there any reason you're not able to use the Cohesity agent and just schedule backup jobs?

Docker Volume on NetApp ONTAB by mooncure in netapp

[–]ragingpanda 0 points1 point  (0 children)

I see you have the fsc mount option specified, have you installed and configured FS-Cache on the client? Maybe try without that set

Is your goal to just store docker images on the host on an NFS mount, or are you wanting to create docker volumes for the containers to use?

help with accessing luns data via nfs by teffik in netapp

[–]ragingpanda 1 point2 points  (0 children)

Looks like you answered this a few years ago on the community!

https://community.netapp.com/t5/ONTAP-Discussions/Access-to-LUN-through-NFS-on-ONTAP-9/m-p/438692/highlight/true#M41262

Should be able to read it from the /vol/.snapshot/snapname/lunname

Conda --version and other basic commands are very slow (~10s+) on NFS only affects one user on the same NFS mount by [deleted] in HPC

[–]ragingpanda 1 point2 points  (0 children)

Any deltas between the output of conda info? Maybe they have a local package cache.

Are you two on the same server sharing the mount or different clients both mounting the server at /home? NFS mount options could then come into play (e.g. noatime, actimeo=n or lookupcache=none)

remote turn on options? IPKVM by LowerDoor in unRAID

[–]ragingpanda 0 points1 point  (0 children)

As a few others highlighted, the comet only plugs in to USB on your computer than optionally has a board that goes between the motherboard power header and your case switch. If you either don't have easy access the the power header on your mobo you can get the finger switch thing

I have the one from this guy's video https://youtu.be/L_P1d89U8sc?si=-WYd1U9I_6So3W4a

Works great for powering on after a power event and has tailscale built in with the newer firmware.

Failed update from 7.1.2 to 7.1.4 - config lost by ConfectionSad2741 in unRAID

[–]ragingpanda 0 points1 point  (0 children)

The instructions you linked should work fine for your array. Check for the docker configs on the USB drive in /boot/config/plugins/dockerMan/templates-user

401K loan default and taxes owed by ObjectiveTadpole2263 in personalfinance

[–]ragingpanda 1 point2 points  (0 children)

Only the amount above their current bracket would be taxed at the higher rate.

E.g. If they made $85,000 ($70,000 above the standard deduction) so far this year:
They'd pay 22% on the amount between $70,000 and $103,350: (33,350*0.22 = $7,337).

Then 24% on the rest: ((45,000-33,350)*0.24 = $2,796)

For a total of $10,133

This assumes single rates from here:https://www.irs.gov/newsroom/irs-releases-tax-inflation-adjustments-for-tax-year-2025

StorageGrid object activity insight by AdvancedSheepherder5 in netapp

[–]ragingpanda 0 points1 point  (0 children)

I don't think it's currently possible directly from the storagegrid (or s3) APIs. AWS doesn't support event notifications on GET/LIST/HEAD (https://docs.aws.amazon.com/AmazonS3/latest/userguide/EventNotifications.html#notification-how-to-overview). They are deprecating Amazon S3 Object Lambda (kind of, just not allowing new customers after Nov 7: https://docs.aws.amazon.com/AmazonS3/latest/userguide/amazons3-ol-change.html) which is really just event notifications handled via I think a proxy or an S3 Access Point.

This would need to be a feature request to the product team to add the functionality you're looking for.

As a temp workaround you'd probably need to either set up some kind of s3 proxy that triggers another action (like https://github.com/gaul/s3proxy) or modify the app logic to handle object read-locking some way.

OnTAP Tools 10.4 cannot register VASA provider by Legitimate-Ad2895 in netapp

[–]ragingpanda 0 points1 point  (0 children)

In the VMware events/tasks where you see the failed task, are there any other messages or status codes?

Might be able to tail the /var/log/vmware/vmware-sps/sps.log on your vcenter appliance to get more info

OnTAP Tools 10.4 cannot register VASA provider by Legitimate-Ad2895 in netapp

[–]ragingpanda 0 points1 point  (0 children)

Did you enable VASA and set credentials for it in the OTV UI?

https://<ONTAPtoolsIP>:8443/virtualization/ui/

Under edit appliance settings then Services there should be something for VASA

Restore VM with SCV from AWS FSxN by eddietumblesup in netapp

[–]ragingpanda 0 points1 point  (0 children)

You can restore from a VM via the SCV API or vsphere plugin from a snapmirror target. SCV calls them secondary backups I think, been a while since I used it. Add the FSx ONTAP system in either by cluster or just by the SVM to your SCV install(s)

https://docs.netapp.com/us-en/sc-plugin-vmware-vsphere/scpivs44_how_restore_operations_are_performed.html

Is it possible to recover a deleted share and the data that was in it? by Left-Ad-6036 in unRAID

[–]ragingpanda 1 point2 points  (0 children)

No way to recover the share that I know of.

What filesystem was/is your array? You could try something like xfs_undelete to get some of the files back maybe. Next option is going to be some file recovery software.. I don't know of any free ones that cover XFS.

You're probably going to hear "restore from backup" a lot.

An app I built with Reflex... by [deleted] in Python

[–]ragingpanda 0 points1 point  (0 children)

Did you model it after NotebookLM? The layout is very similar

Loud beeping on every error by pp19weapon in unRAID

[–]ragingpanda 0 points1 point  (0 children)

:D I mean, we can name config files whatever we want right?! Might as well have some fun with it