我已经在Arch安装中在/etc/netctl/tq84-wifi中配置了一个wifi连接,并且能够用sudo netctl start tq84-wifi手动启动它。
现在,当我启动Linux时,我想让我的安装自动启动wifi连接。我尝试了sudo netctl-auto switch-to tq84-wifi,但是这个命令告诉我Profile 'tq84-wifi' does not exist or is not available。
那么,我该做什么呢?
发布于 2016-04-16 09:28:12
执行sudo netctl enable tq84-wifi。尼特维基页面上写着:
使用此方法,每个接口只能静态地启动一个配置文件。首先,手动检查配置文件是否可以通过以下方法成功启动:
# netctl start profile 然后,可以使用以下方法启用:
# netctl enable profile这将创建并启用系统d服务,该服务将在计算机启动时启动。对配置文件的更改不会自动传播到服务文件。在进行了这些更改之后,有必要重新启用配置文件:
# netctl reenable profile启用配置文件后,它将在下次启动时启动。显然,只有当有线连接的网络电缆被插入,或者配置文件中使用的无线接入点分别在范围内时,这才能成功。
https://unix.stackexchange.com/questions/276844
复制相似问题