this post was submitted on 02 Sep 2024
794 points (93.4% liked)

Linux

47356 readers
1377 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
[–] [email protected] 6 points 2 weeks ago (2 children)

kwrite and gedit friends rise up :)

[–] [email protected] 8 points 2 weeks ago (1 children)

On KDE, there's also Kate. They used to be totally different apps, but these days, KWrite is a simplified version of Kate. They both use the same text editor component, but Kate adds more IDE-like features.

[–] [email protected] 2 points 2 weeks ago

true but i dont like how they are forced togther so i use featherpad

[–] [email protected] 3 points 2 weeks ago (4 children)

How do you use these when you are connecting via SSH? You enable X forwarding?

It's fine when you have a graphical environment, but what do you do when you dont have one?

[–] [email protected] 6 points 2 weeks ago

Using X forwarding would require you to install big chunks of GNOME or KDE on the server. A better approach is to mount the remote server over SFTP then use KWrite, gedit, whatever, directly on your desktop.

[–] [email protected] 4 points 2 weeks ago

A similar argument is what finally caused the value of the vi family of editors to click in my brain:

They are designed to be fully functional over even the shittiest possible* remote connection. You can't always count on ctrl, alt, or even the arrow keys being transmitted in a way that is understood by the remote machine.

*Well, I guess the worst possible terminal would be something like an actual teletype, and in that case you'd probably want to fall back to ed or its descendants. To save paper, if nothing else.

[–] [email protected] 3 points 2 weeks ago

ohh yeahh then nano

[–] [email protected] 2 points 2 weeks ago

In any KDE app you can connect with SFTP in the open file dialog. Just type sftp://user@server/path and you can browse/open/edit files the remote server. ssh keys+agent make things a lot easier here obviously.