You are not logged in.
I'm trying to get Internet access back via netctl.
$ netctl start MV
Failed to start netctl@MV.service: Unit netctl@MV.service failed to load: No such file or directory.
$ netctl status MV
netctl@MV.service
Loaded: error (Reason: No such file or directory)
Active: inactive (dead)
I created a profile using wifi-menu -o wlps20, and the profile appears at /etc/netctl/MV
I feel like this should be an easy fix, but I don't know what it is.
Offline
Can you post /etc/netctl/MV (edit it so we don't see any private information such as password)? Also, the error messages say that service files doesn't exist. I've only used netctl-auto but my spider senses are telling me that it shouldn't be
netctl@MV.servicebut should be
netctl@<interfacename>.serviceEither way, I quoted how to use netctl-auto from the wiki below.
https://wiki.archlinux.org/index.php/netctl
One way is to stop & disable all other network service/managers from systemctl.
Then you can use netctl-auto by enabling & starting it
sudo systemctl enable netctl-auto@wlp2s0.serviceNote: I think your interface name is wlp2s0 instead of the wlps20 you wrote above. Change my syntax to match your true interface name.
Then start the service,
sudo systemctl start netctl-auto@wlp2s0.serviceIf it doesn't automatically use the MV network you can switch to it
sudo netctl-auto switch-to MVRead the wiki for more ways to use netctl and/or how to set it up.
Offline
Not an Installation issue, moving to NC...
Offline
The contents of /etc/netctl/MV are:
Description='Automatically generated profile by wifi-menu'
Interface=wlp2s0
Connection=wireless
Security=wpa
ESSID=network_name_hidden
IP=dhcp
Key=779b31...b9742
I looked, and it appears that netctl-auto@wlp2s0.service does not exist. It doesn't appear at /usr/library/systemd/system/
# systemctl enable netctl-auto@wlp2s0.service
Failed to execute operation: No such file or directory
I think I may have deleted it a long time ago when first setting up netctl because I had trouble the first time and there's much talk of how you should only have one service.
Offline
In /usr/lib/systemd/system there is netctl-auto@.service. The device name is added once you enable the service file.
If you read the contents of the link frank604 posted carefully you notice you have to install wpa_actiond to use this file.
But since you already have created your profile you should give netctl@<interfacename>.service a try.
Offline