Skip to main content
Topic: minor documentation issue in installation manual (Read 434 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

minor documentation issue in installation manual

https://wiki.artixlinux.org/Main/Installation

on section:

Quote
dinit
install connman and optionally a front-end:

 pacman -S connman-dinit connman-gtk
 ln -s ../connmand /etc/dinit.d/boot.d/

 ln -s ../connmand /etc/dinit.d/boot.d/ < what is the expected service dir here?

Re: minor documentation issue in installation manual

Reply #1
ln -s ../connmand /etc/dinit.d/boot.d/ < what is the expected service dir here?

That is a literal command. It will create a link called "connmand" in /etc/dinit.d/boot.d, which makes the connmand service a dependency of the "boot" service.

Re: minor documentation issue in installation manual

Reply #2
true. it just looks inconsistent with the rest of the examples in this documentation.

 

Re: minor documentation issue in installation manual

Reply #3
I guess it could read:

 ln -s /etc/dinit.d/connmand /etc/dinit.d/boot.d/

But technically what's written is correct as the command tries to create a link in /etc/dinit.d/boot.d/ and it looks for the file it's linking (connmand) one directory up from where it's putting the link (which is what the "../" does) I didn't realize ln behaves this way.  You'd think by putting ../connmand that ln would look one directory up from wherever you are executing the command but I guess that's not the case.