I thought the default interactive shell is still bash on Ubuntu, dash is only used for /bin/sh, isn’t it? At least bash is also installed by default, as there are so many scripts that wouldn’t run otherwise
- 0 Posts
- 21 Comments
I switched to zsh at a time where completion for commands parameters except file paths in bash wasn’t really a thing, you could add some with a script, but they didn’t work well. I’m sure the situation has improved by now, but someone told me recently, there are still no descriptions for the completions. I find it very helpful and it saves me opening a man page a lot of times. For example, typing
grep -<Tab>gives me this:
And now I’m so used to many little features (mostly around the syntax) that wouldn’t be a reason to switch on their own, that I find bash cumbersome to use.
Isn’t sha512sum a regular binary, that should not depend on the shell at all? What does nushell do that something like that can break o.O
crater2150@feddit.orgto
Selfhosted@lemmy.world•Cheapest way to back up a *lot* of data?English
1·22 days agoI’m not sure if supports encryption though, which is probably where a dedicated server would be useful.
Well, ideally you encrypt your data before transferring, so the provider never sees your data. I’m using a storagebox to backup btrfs incremental snapshots (using btrbk) and just AES encrypt them locally before sending them over, so I don’t care if the storagebox itself is encrypted.
If your bulbs use Bluetooth and your phone is an android, that’s because on Android you need location permission to scan for Bluetooth devices (as known Bluetooth beacons in range could give away your location). It’s still bad, because you can’t know if the app uses that permission for anything else.
I used fzf before atuin, and it works pretty similar, but atuin has a few additional features, as it tracks more information than the normal shell history. For example, you can also search only for commands that you executed in the current directory (great for stuff that is project specific). Or, if you use the history syncing feature, you can toggle search for commands you executed on either any or only the current machine.
In zsh, you can configure the completion to also show descriptions.
Thank you, from a quick glance it seems to be able to do everything I need. I will try it for my next load test.
The only thing I still use Postman for at work is when running API performance benchmarks, as I wasn’t yet motivated enough to write a curl wrapper to do such tests and plot the results. Especially when doing things like ramp up etc. it becomes more than a simple for-loop.
Can someone recommend an existing command line tool for that?
Also, even zsh scripts don’t read your .zshrc by default.
The author seems to be Ellis Rosen (I searched based on the signature in the comic)
Do most packages usually have a manual entry ?
Usually there are manual pages for commands, for libraries and drivers like libwacom it is less common, and they are not necessarily the same as the package name. Some packages also just have a Readme file or an HTML manual installed under /usr/share/doc or similar.
When unsure, I often just check the list of files that belong to a package, most package managers can do it. E.g. on Debian-based (i.e. apt using) distros,
dpkg -L $packagenamewill list it, in arch based distros it ispacman -Ql $packagename.
crater2150@feddit.orgto
Comic Strips@lemmy.world•Cutting Out the Middleman (by Jen Sorensen)
4·6 months agoIn the EU, cars have to be equipped with automatic emergency call systems since 2018. So probably since then most brands will have had it, as they are required to have cell connection hardware anyway.
Well, having a domain is basically documenting your IP publicly. It’s not that risky.
Sunless Sea, Sunless Skies and Stardew Valley have native Linux Support. For Stardew, even the third modding API works flawlessly for me.
For the other ones, they are reported to run well on protondb.com, which is a good place to check Linux support (not only for Steam games). The reports there usually also list, which proton version works well.
Manual firmware updates
As someone who’s work laptop no longer has Wi-Fi since the automatic firmware update, I like my updates to be manual.
Wouldn’t it still look weird because the two images are offset in a different axis than your eyes?
I don’t use GNOME, but from what I’ve read (and from experience with other software that has extensions) they often break when GNOME updates.




A lot of Dockerfiles start with installing dependencies via the base image’s package manager, without specifying exact versions (which isn’t always possible, as most distros don’t keep all history of all packages in their repos). So all your dependencies may have different versions, when you build again.