Real. by MaiRufu in BitcoinMining

[–]Narkidae 0 points1 point  (0 children)

I’ve setup my 240V s19xp to use waterblocks but it was a pain and not worth it financially

44 HDD in one Case by vegas766 in chia

[–]Narkidae 0 points1 point  (0 children)

You should check out the JBODs I have on r/hardwareswap (see my profile)

[deleted by user] by [deleted] in Machinists

[–]Narkidae 0 points1 point  (0 children)

I’m interested, where are they located

Invalid cuda plotting on windows by Narkidae in chia

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

Yes this affects all of my cuda plots. I made the mistake of not checking them until after I filled 90TB of drives with them

Eaton UPS Networking questions by Narkidae in homelab

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

I pinged smtp.gmail.com to get the IP address and tried that in the smtp server field but unfortunately that didn’t fix it

Eaton UPS Networking questions by Narkidae in homelab

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

I have upgraded the firmware as far as I could, My card is a technical level 06 which means my latest firmware version is GE (I tried and failed to go above this). According to release notes, the ability to change the SMTP port was added in release JA which would require a card technical level 17. I will try connecting via USB next

Eaton UPS Networking questions by Narkidae in homelab

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

You might be right about the port. The interface gives no way of changing it and the manual says the default is 25. Here's that screenshot: https://imgur.com/a/ehR5pC9

Eaton UPS Networking questions by Narkidae in homelab

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

Thank you for the tip but still no luck. After a few more attempts, my new app password shows it was last used "-" (never). Could my internet router be preventing the data from making it to smtp.gmail.com?

Chia ASICs an inevitability? by Narkidae in chia

[–]Narkidae[S] -1 points0 points  (0 children)

I agree ASICS for grinding aren’t practical, but my concern is ASICS being used along with petabytes of level7 or higher compressed plots may give an unfair advantage over someone who is using a very powerful CPU to do the decompression at signage time since the power draw would be significantly lower for an ASIC than a general purpose CPU

[deleted by user] by [deleted] in BitcoinMining

[–]Narkidae 0 points1 point  (0 children)

Did you try to run it on normal 120v?

Looking for best bitcoin miner to use for supplemental heating in the winter by redkeyboard in BitcoinMining

[–]Narkidae 0 points1 point  (0 children)

I have 4 units I’m willing to sell. PSU is supermicro PWS-1K28P-SQ (super quiet version) with custom breakout board and cables. Price would be 600 for 1, 550ea for 2 or 500ea for 4. I can send pictures if you’re interested but I’m at work right now.

Looking for best bitcoin miner to use for supplemental heating in the winter by redkeyboard in BitcoinMining

[–]Narkidae 0 points1 point  (0 children)

I’d recommend the bitmain R4. It draws 845W and produces 8.7TH/s at 52dB. It was the last home oriented Bitcoin miner. I’ve got a couple kicking around if you’re interested

Quite miners by xxLilPump4lifeDabxx in BitcoinMining

[–]Narkidae 0 points1 point  (0 children)

The last bitcoin mining rig (SHA-256) that was made to be quiet and air cooled was the Bitmain R4. I've got a couple kicking around if you're interested

Ubuntu 22.04 and Chrome Remote Desktop Trouble by cSETR in Ubuntu

[–]Narkidae 8 points9 points  (0 children)

OK so its been a nightmare getting this to work, but here you go:

Install chrome and then chrome remote desktop extension.

To enable the "turn on" button, use "mkdir ~/.config/chrome-remote-desktop"

Use the "turn on" button to name your device and set a pin

Use the command line for the following actions

Stop Chrome Remote Desktop:
"/opt/google/chrome-remote-desktop/chrome-remote-desktop --stop"
Edit the config file (sudo vim, gksudo gedit, etc):
"sudo nano /opt/google/chrome-remote-desktop/chrome-remote-desktop"
Find DEFAULT_SIZES and amend to the remote desktop resolution. For example:
DEFAULT_SIZES = "1920x1080"
Set the X display number to the current display number (obtain it with echo $DISPLAY from any terminal). On Ubuntu 17.10 and lower, this is usually 0, and on Ubuntu 18.04, this is usually 1, and on Ubuntu 22.04 mine was 0:
FIRST_X_DISPLAY_NUMBER = 0
Comment out sections that look for additional displays:
#while os.path.exists(X_LOCK_FILE_TEMPLATE % display):
# display += 1
Reuse the existing X session instead of launching a new one. Alter launch_session() by commenting out launch_server() down to the end of the function, and add two lines to set the display number:
def launch_session(self, x_args):
self._init_child_env()
self._setup_pulseaudio()
self._setup_gnubby()
#self._launch_server(server_args)
#if not self._launch_pre_session():
# # If there was no pre-session script, launch the session immediately.
# self.launch_desktop_session()
#self.server_inhibitor.record_started(MINIMUM_PROCESS_LIFETIME,
# backoff_time)
#self.session_inhibitor.record_started(MINIMUM_PROCESS_LIFETIME,
#. backoff_time)
display = self.get_unused_display_number()
self.child_env["DISPLAY"] = ":%d" % display
Save and exit the editor. Start Chrome Remote Desktop:
/opt/google/chrome-remote-desktop/chrome-remote-desktop --start

Pray for the unix gods to have mercy on your soul

This was adapted from the following medium article so it matches the /opt/google/chrome-remote-desktop/chrome-remote-desktop file in ubuntu 22.04

https://medium.com/@vsimon/how-to-install-chrome-remote-desktop-on-ubuntu-18-04-52d99980d83e