this post was submitted on 17 Feb 2026
101 points (86.3% liked)

Linux

12664 readers
126 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
 

Still using these obsolete Linux commands? They might be popular from the olden days but perhaps it is time to look for alternatives.

you are viewing a single comment's thread
view the rest of the comments
[–] HeartyOfGlass@piefed.social 70 points 2 weeks ago* (last edited 1 week ago) (19 children)

Listed programs:

  • scp - "potentially deprecated"
  • e/fgrep - replaced with grep flags
  • net-tools, which includes
    • netstat
    • arp
    • route
    • iptunnel *nameif
  • ifconfig
  • iwconfig
  • iptables
[–] pkjqpg1h@lemmy.zip 98 points 2 weeks ago (11 children)

Replacement:

  • scprsync or sftp

  • egrep --> grep -E

  • fgrep --> grep -F

  • netstat --> ss

    • arp --> ip n
    • route --> ip route
    • iptunnel --> ip tunnel
    • nameif --> ip link
  • ifconfig --> ip

  • iwconfig --> iw

  • iptables --> nftables

[–] lambalicious@lemmy.sdf.org 33 points 2 weeks ago (3 children)

rsync is cool but is nowhere a replacement for scp's main use case. scp actually uses your SSH client settings file, whereas rsync doesn't (it does have the opportunity to use a SSH command, which you then have to setup separately).

[–] Brummbaer@pawb.social 4 points 2 weeks ago (1 children)

I'm not sure I get what you mean. In every distro I used so far rsync did use ssh by default so it would honor everything I set in the ssh config.

[–] lambalicious@lemmy.sdf.org 2 points 2 weeks ago* (last edited 2 weeks ago)

Not everything however. For it to catch some options , for example SOCKS bridges, you have to use the SSH passthrough notation aka rsync -e 'ssh bridgename...' --rsync-options.... And ofc if you have to load a different SSH conffile, you have to use the while passthrough for that as well, there's no rsync native option to load a SSH conffile: rsync -e 'ssh -F conffile ssh_options...' --rsync-options....

load more comments (1 replies)
load more comments (8 replies)
load more comments (15 replies)