this post was submitted on 25 Jul 2024
68 points (95.9% liked)

Linux

47287 readers
1676 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] sparr@lemmy.world 5 points 1 month ago (1 children)

please dont use chsh

doesnt mean your whole OS needs a different shell

chsh just changes the shell when you log in to a shell. all the other shells are still available and usable. any script starting tieh #!/bin/bash will still run with bash, even if you're using zsh or fish.

[–] boredsquirrel -1 points 1 month ago (1 children)

Yes bash scripts still work, but I heard there may be other things that randomly break.

Many things use #!/bin/sh for example, which often is a link to bash, but may not work anymore.

[–] lelgenio@lemmy.ml 4 points 1 month ago (1 children)

chsh does not modify /bin/sh

Maybe you're thinking of a certain video from a certain YouTuber who linked /bin/sh to fish?

[–] boredsquirrel -1 points 1 month ago (1 children)

Haha no didnt think of that? Hm, I dont know why it would be an issue then. POSIX compliant shells should be no problem, but I wouldnt do it for fish

[–] billgamesh@lemmy.ml 2 points 1 month ago

It will never matter what your login shell, unless you have bash specific scripts in your login. chsh -s /bin/fish $(whoami) is fine.