this post was submitted on 02 Sep 2024
791 points (93.3% liked)

Linux

49007 readers
1233 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
 
(page 5) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 91 points 4 months ago (13 children)
load more comments (12 replies)
[–] [email protected] 1 points 4 months ago

My problem with those are that I always manage to get lost on where the program has its focus/what kind of instruction is expecting. And while trying to go back to normal I end up messing it more and more. Maybe some day I will get there, but it is still not the day.

[–] [email protected] 10 points 4 months ago (5 children)

I just use this:

#!/bin/bash

keep_generating=1
while [[ $keep_generating == 1 ]]; do
    dd if=/dev/random of=$1 bs=1 count=$2 status=none
    echo Contents of $1 are:
    cat $1
    echo
    read -p "Try generating again? " -s -n1 answer
    while true; do
        case $answer in
            [Yy] )
                echo
                break
                ;;
            [Nn] )
                keep_generating=0
                break
                ;;
            *)
        esac
        read -s -n1 answer
    done
done
load more comments (5 replies)
[–] [email protected] 11 points 4 months ago (1 children)
[–] [email protected] 9 points 4 months ago (1 children)
load more comments (1 replies)
[–] [email protected] 34 points 4 months ago (11 children)

You noobs. I just use combinations of cat piped to sed to edit my files, which are mainly lisp code.

load more comments (11 replies)
[–] [email protected] 9 points 4 months ago (1 children)

Emacs users laughing at VIM users.

Emacs - A pretty good OS you can use as a text editor.

load more comments (1 replies)
[–] [email protected] 36 points 4 months ago (22 children)

I’ve come to the conclusion, people who use vim just continue to do so out of a stubborn sense of pride for finally learning the key combinations.

[–] [email protected] 10 points 4 months ago

I am faster, more comfortable, and more productive in Vim. I use the same keybindings in all my editors and IDEs. It's okay for people to have different preferences.

[–] [email protected] 7 points 4 months ago

That's funny, I feel the same way about Excel users.

load more comments (20 replies)
[–] [email protected] 3 points 4 months ago (1 children)

Worst is when installing a new distro(usually in a vm ) and it defaults to nano and for some weird reason no vi of any sort is installed. I hated nano. Last time I intentionally used something like nano was the 90s with pine I think.

[–] [email protected] 10 points 4 months ago* (last edited 4 months ago) (1 children)

What is there to hate? I don't really understand. It does what it says on the package, and seems to do it pretty well. At least with respect to making small and quick edits to config files in the command line.

[–] [email protected] 6 points 4 months ago (1 children)

My fingers don’t speak it is the problem.

[–] [email protected] 6 points 4 months ago
[–] [email protected] 31 points 4 months ago (4 children)

Average vim user: vim is easy.

Also average vim user: literally hours of reading tutorial pages on how to use vim.

[–] [email protected] 20 points 4 months ago (1 children)
load more comments (1 replies)
[–] [email protected] 8 points 4 months ago (4 children)

It is easy, though? I cannot even use it correctly. I just know some of the commands and that if you hold down shift it goes backwards.

[–] [email protected] 12 points 4 months ago

I'm a vim user and I would say it's not. It's very powerful, but only once you become familiar with the commands.

Nano is a better default for the average user because it works in a way most users would expect for a text editor to work.

load more comments (3 replies)
load more comments (2 replies)
load more comments
view more: ‹ prev next ›