Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-14-2017, 09:25 PM
|
#1
|
LQ Newbie
Registered: Apr 2017
Posts: 7
Rep: 
|
Breaking Old Standards
I just installed arch linux in a VM and everything is fine. Arch is pretty impressive and really cool.
I just have two caveats with arch. Some commands are not linux standards. So far, I only encountered two, but there could be more or not.
I opened the terminal to do a quick netstat to see what ports are open and netstat wasn't available. A quick google search says it is now ss. The other one is ifconfig, now ip.
The second caveat is stating services. The old standard that I used for years when I came to linux was /etc/init.d/service-name start|stop|restart. Now it's systemctl.
If you're used to old standards be prepared to be re-schooled with arch. The good news it is just a few changes to learn.
So far, ip and ss are the new replacements in arch. Are there others?
Thanks in advance.
Last edited by KCBL; 04-14-2017 at 09:27 PM.
|
|
|
04-14-2017, 09:36 PM
|
#2
|
LQ Guru
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,947
|
ip and ss are not necessarily Arch things. Yes, they are relatively new commands, but they are relatively new Linux commands, not new Arch commands.
Both are included in Slackware, Debian, and CentOS, for example, not one of which can be accused being bleeding edge (and they are probably in many other distros, but those are ones I can test right now).
Last edited by frankbell; 04-14-2017 at 09:43 PM.
|
|
1 members found this post helpful.
|
04-14-2017, 10:04 PM
|
#3
|
LQ Newbie
Registered: Apr 2017
Posts: 7
Original Poster
Rep: 
|
Quote:
Originally Posted by frankbell
ip and ss are not necessarily Arch things. Yes, they are relatively new commands, but they are relatively new Linux commands, not new Arch commands.
|
That's what I meant to to say. But you said it better
When you're used to using certain commands for years, I mean years. You get used to them, you expect them to be in all linux distros.
It's good to learn new things so you can deal with systemd distros and those new command replacements.
Thanks frank for the reply +1
|
|
|
04-14-2017, 10:10 PM
|
#4
|
LQ Guru
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,947
|
Quote:
When you're used to using certain commands for years, I mean years. You get used to them, you expect them to be in all linux distros.
|
This I get.
I'm still learning my way around the ip command. As an aside, I find its output to be much less pleasingly formatted than the output of ifconfig, but I'm sure they'll get there eventually.
Last edited by frankbell; 04-14-2017 at 10:11 PM.
|
|
|
04-15-2017, 12:14 AM
|
#5
|
LQ Newbie
Registered: Apr 2017
Posts: 7
Original Poster
Rep: 
|
Quote:
Originally Posted by frankbell
I'm still learning my way around the ip command. As an aside, I find its output to be much less pleasingly formatted than the output of ifconfig, but I'm sure they'll get there eventually.
|
That's way when one is using linux, we are forever continuously learning. 
Last edited by KCBL; 04-15-2017 at 12:17 AM.
|
|
|
04-15-2017, 02:16 AM
|
#6
|
Member
Registered: Jun 2016
Distribution: any&all, in VBox; Ol'UnixCLI; NO GUI resources
Posts: 999
|
Welcome to LQ! Sounds like you are a 'heavy' Linux/Unix 'oldtimer'
(feel free to share a bit of 'autobiography' in the Intro Forum)
IF you'd like to read a bit of the discussions on this, toss: ifconfig deprecated
into an LQ (or web) search.
Great to hear you're enjoying Arch! Just doNOT start any debates on systemd 
|
|
|
04-15-2017, 03:47 AM
|
#7
|
LQ Newbie
Registered: Apr 2017
Posts: 7
Original Poster
Rep: 
|
Quote:
Originally Posted by Jjanel
Great to hear you're enjoying Arch! Just doNOT start any debates on systemd 
|
You don't have to worry about that as I know very little of it. I just learn enough to get the job done like start, stop, enable and disable services.
I am aware that there are people who don't like it. All I can say is there are other penguins in the sea
Thank you Jjanel for the welcome.
Last edited by KCBL; 04-15-2017 at 07:18 PM.
|
|
|
04-15-2017, 11:04 AM
|
#8
|
LQ Veteran
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Salix
Posts: 6,252
|
Quote:
Originally Posted by KCBL
When you're used to using certain commands for years, I mean years. You get used to them, you expect them to be in all linux distros.
|
I sympathise! Then there's the disappearance of eth0, and the change /mnt > /media > /run... Like the man sang, "Slow down, you move too fast"
|
|
|
04-16-2017, 05:03 AM
|
#9
|
Senior Member
Registered: Feb 2003
Distribution: debian
Posts: 4,137
|
netfilter instead of iptables instead of ipchains.
ip instead of ifconfig
iw instead of iwconfig
dhcpcd instead of dhclient (arch anyway)
The syntax of shutdown changed with systemd:
# shutdown -h now
became
# shutdown -H -P +0
And service instead of /etc/init.d/{script} start|stop|restart
# service --status-all
# service cron stop
(didn't seem to work in fedora 23)
Where systemctl works too, but slight different syntax.
# systemctl stop ModemManager
Instead of creating a custom xorg.conf, you now use xinput, xrandr, and other things AFTER booting X to fine tune things. Or a modern DE that does those things for you, sometimes correctly.
|
|
|
All times are GMT -5. The time now is 04:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|