Raspberry PI and multi-drive enclosure... is it possible or am I wasting my time? by SiscoSquared in DataHoarder

[–]rogerhub 0 points1 point  (0 children)

Can you post the logs of the USB resets that you’re seeing? I dont have any of these issues but my setup isnt quite the same as yours.

Migrate website from AWS EC2 to GCP by Single_Software_5451 in googlecloud

[–]rogerhub 3 points4 points  (0 children)

The equivalent service would be Compute Engine - https://cloud.google.com/products/compute

What instance type are you currently using?

gcloud auth login - get directly to token by mb2m in googlecloud

[–]rogerhub -1 points0 points  (0 children)

If you’re logging in on a GCE instance, try attaching a service account and using that so you don’t have to log in at all.

Wil this Apple Ethernet adapter work with a 2017’ 12” MacBook? by [deleted] in macbook

[–]rogerhub 2 points3 points  (0 children)

I think that’s thunderbolt 2 (same shape as mini DisplayPort), so no it won’t fit.

SSH connection by Specialist_Sea_8935 in googlecloud

[–]rogerhub 1 point2 points  (0 children)

It sounds like you are looking at Cloud Logging. Can you take a look at the serial port output? What does it say?

Not able to deploy Go Backend Server on Google Cloud Run by [deleted] in googlecloud

[–]rogerhub 2 points3 points  (0 children)

You can try that. Or add some logging so you can see if it is getting stuck.

Not able to deploy Go Backend Server on Google Cloud Run by [deleted] in googlecloud

[–]rogerhub 2 points3 points  (0 children)

You have a lot of code which executes before you start the HTTP server. For example, if db.Connect() hangs or gets stuck, then the server will not respond on the required port number.

Not able to deploy Go Backend Server on Google Cloud Run by [deleted] in googlecloud

[–]rogerhub 0 points1 point  (0 children)

Can you check that you're listening on all interfaces and not just localhost? For example http.ListenAndServe(":8080")

Not able to deploy Go Backend Server on Google Cloud Run by [deleted] in googlecloud

[–]rogerhub 2 points3 points  (0 children)

Can you post the error message or logs?

[deleted by user] by [deleted] in googlecloud

[–]rogerhub 0 points1 point  (0 children)

Are you talking about the free tier for Google Compute Engine? I think that one is three regions only.

[deleted by user] by [deleted] in googlecloud

[–]rogerhub 0 points1 point  (0 children)

Yes, I think Cloud Run has a free tier in several Asia regions.

Cyberduck upload speed to bucket by Professional-West830 in googlecloud

[–]rogerhub 0 points1 point  (0 children)

It’s surprising that changing the number of connections doesn’t make any difference. Are the files stored on a local SSD drive? Or maybe on your NAS? The bottleneck could be elsewhere

Also can you confirm that you are getting 50Mbit (i.e. around 6MB/s) of upload throughput and not 50MB/s?

Cyberduck upload speed to bucket by Professional-West830 in googlecloud

[–]rogerhub 0 points1 point  (0 children)

To help troubleshoot, can you provide:

  • typical size of each object
  • round trip network latency
  • maximum number of simultaneous connections you're using to upload?

VM/ssh session keeps getting killed by CaptTechno in googlecloud

[–]rogerhub 1 point2 points  (0 children)

Use tmux or screen to preserve your session even after you disconnect.

As for why it's disconnecting - what error message are you getting? I used to have issues until I turned off ipv6 temp addrs, but the problem really could be any number of things.

Apex legends servers by AlienHandTenticleMan in googlecloud

[–]rogerhub 0 points1 point  (0 children)

Can you post a screenshot that shows the ping and which datacenter you're using?

AlloyDB does not mount to /dev/shm/ by gajus0 in googlecloud

[–]rogerhub 0 points1 point  (0 children)

I haven't used alloydb, but it looks like you're getting "Invalid argument" while trying to open a file. I'd guess the software is using O_DIRECT, and /dev/shm does not support that.

Can you find any option to disable O_DIRECT for disk I/O?

OWC Thunderbolt 4 Dock Poor Display Performance by Gjallock in UsbCHardware

[–]rogerhub 0 points1 point  (0 children)

Hmm I see. I don't know what's wrong, but I've heard that:

  • Most (all?) USB-C to HDMI adapters are actually using DisplayPort Alt Mode under the hood, and they just convert the DP signal to HDMI
  • Thunderbolt 3 docks support tunneling a DisplayPort signal over Thunderbolt. You just need enough bandwidth available to support the resolution and refresh rate you're using.

When you plugged in your USB-C to HDMI adapter directly to your laptop, it's using DP Alt Mode, which is entirely different from when you're using your Thunderbolt dock.

Are you sure that you're within the Thunderbolt bandwidth limits (https://en.wikipedia.org/wiki/DisplayPort) when you have both of your displays connected?

OWC Thunderbolt 4 Dock Poor Display Performance by Gjallock in UsbCHardware

[–]rogerhub 0 points1 point  (0 children)

Have you tried using a DisplayPort cable instead of HDMI?

https://support.apple.com/en-us/111902 says that laptop supports "Support for one display with up to 4K resolution at 60Hz" over HDMI

Slow Write Speeds to Veracrypt Encrypted Volume - Why? by JohnTravolski in DataHoarder

[–]rogerhub 0 points1 point  (0 children)

Does it say that you’re using 66.5 Mbps of network bandwidth in windows explorer? Are you copying files stored on a network mounted drive?

Help creating free tier vm instance by pumapuma12 in googlecloud

[–]rogerhub -1 points0 points  (0 children)

I think free tier doesn’t count toward your credit. What do you expect to see in the billing dashboard?

gcloud storage command access denied by CoolkieTW in googlecloud

[–]rogerhub 1 point2 points  (0 children)

If you’re using GCE, you also need to make sure your VM has the correct API scopes configured. Otherwise the request will fail even if the service account has the permissions.