this post was submitted on 27 Dec 2023
50 points (96.3% liked)

Linux

47369 readers
908 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
 

I'm playing with a couple of routers and comparing proprietary to open source on the same hardware. I miss my .bashrc functions and aliases... and compgen, tree, manpages, detailed help, etc; the little things that get annoying when they are missing.

I was thinking about trying to mount the embedded system on my workstation (while it is running?), but I'm not clear how this would work in practice with permissions, users, groups, root, etc. I'm curious how others do this kind of development/screwing around, or if this is a crazy idea.

you are viewing a single comment's thread
view the rest of the comments
[–] Ramin_HAL9001@lemmy.ml 7 points 8 months ago* (last edited 8 months ago) (2 children)

This is probably not a solution you would want, but I will mention it anyway...

Emacs has a built-in app called "TRAMP mode", what it does is it works as back-end for all of Emacs's own built-in text editing and file browsing commands, then it uses ordinary SSH and POSIX shell commands on a remote host as the primitive APIs for this back-end. You could say it uses SSH and a POSIX shell as a RPC mechanism.

What this means is you can use the ordinary Emacs editor with the entirety of your usual Emacs configuration, but all filesystem changes (including editing files, directories, and running shell processes) occur on the remote host via SSH. In order to activate it, you just use Emacs's special TRAMP URL scheme as the file path you want to edit, and it works seamlessly, (especially if you setup your SSH agent so you don't need a password). An example of such a URL would be /ssh:user@remote-host:/etc/hosts.

[–] Lem453@lemmy.ca 9 points 8 months ago (4 children)
[–] mvirts@lemmy.world 5 points 8 months ago

We're gonna get through this

[–] waz@lemmy.world 3 points 8 months ago

Vim has it's own way to edit/brows remote files. Checkout netrw:

https://www.vim.org/scripts/script.php?script_id=1075

[–] Ramin_HAL9001@lemmy.ml 2 points 8 months ago* (last edited 8 months ago)

There are Vim emulator apps for Emacs, and you can use them with TRAMP mode for remote file editing as well. Doom Emacs and Spacemacs both provide extremely good Vim emulation that work consistently throughout all Emacs modes, including TRAMP mode.

[–] x3i@lemmy.x3i.tech 1 points 8 months ago

Vim supports editing files through scp as well, no reason to cry here xD

[–] NanoooK@sh.itjust.works 2 points 8 months ago

I've discovered this not long ago and it makes my work way easier. Also, using the dired mode on the remote is useful.