

I think pressing TAB sends Alt+I to the terminal so yeah.
I think pressing TAB sends Alt+I to the terminal so yeah.
You mean
cd a
pushd b
pushed c
popd
popd
Right ?
Depending on your shell, pushd
/popd
might not be an option.
For a similar functionality, I like to use a subshell which is portable across all shells:
cd a
$SHELL
cd b
cd c
# do work here
^D
# you're back in "a"
Disabling it is fine indeed, but I saw many comments advising to block outbound traffic, so I warned against that.
Weight your words my friend! GNU’s a behemoth !
GCC alone is almost as big as Linux. Add core/binutils, the Hurd, … And you easily outclass the kernel itself !
~ $ du -sh linux-6.4.12/ gcc-13.2.0/ 1.5G linux-6.4.12/ 1.1G gcc-13.2.0/
Oh, and Emacs.
Apparently they advise to disable IPv6. I’m a bit disappointed 😞
IPv4 and IPv6 are two different network stacks. Your IPv4 stack is hidden behind wireguard, but not the IPv6 one.
The correct way to fix your issue is to setup a second witeguard tunnel for IPv6, and route IPv6 traffic through it.
Edit: many comments advise to block outbound IPv6 traffic. Don’t do that! It will add latency to all your requests as you will have to wait for them to timeout.
You’re missing a chance to help cool tech moving forward :)
I messed up, that’s the opposite actually ^^
I’m reading all the comments and I’m shocked… In France, with uncapped access and 1Gbps down/600Mbps up (theorical) I pay 40€/mo (30€ every six month when I call to complain that it’s too expensive). And it’s definitely not the cheapest provider.
That’s insane !
That’s cheap indeed. Is it possible to install a different OS than those listed on their website ?
I’ll look more into FUSE based remote storage more generally because it seems to be my only option besides NFS. I’ve heard great feedback from SSHFS so I’ll bench it eventually and see how it goes.
My main issue with NFS is that it’s been unreliable in my case (multiple servers connected over wireguard, over internet). Which cause locks and latency for the applications that read/write to it (Matrix server, distributed repository, …).
Of course if you can afford connecting the NFS server directly to the servers, that’s perfect but I’m more on the worst case scenario ^^
Ok thanks, so it’s similar to rclone mount
, just with another tool.
How do you mount it ?
How do you use them ? Do you mount the bucket locally on the server ?
I didn’t know about their storage box. That’s interesting, thanks !
The best example would be a running an email or chat server. The spool/media directories can go large pretty quick as users share pictures, gifs, … So I would like to mount it from a remote location because the matrix server itself only has a 20G SSD for the whole OS. Rsync won’t cut it there as I have a specific process writing to a location.
I’m never going with Google/Dropbox ^^ the goal is to be in control of my data. Backblaze could be an option, but I expect too many read/writee for it to be cheap.
I considered the NAS at home but my home net is not reliable enough.
TBH I’m still looking for a better option to share storage between servers other than NFS. There has to be something better in 2023!
I ise backblaze for backups already. But is an S3 backend any good for mounting locally and doing many read/write ? What are my options to mount it besides rclone ?
Forgot a word sorry. I said pressing TAB or Alt+I are the same thing. But I was mistaken, it’s tab and Ctrl+I.