You are not logged in.

#1 2012-02-15 23:02:37

franzor
Member
Registered: 2012-01-23
Posts: 46

Cant connect to network anymore

Hi

Since the last update I'm having some weird problems with my network and powertop2

Last Pacman Update:

udev
initscripts
mkinitcpio
pacman-color
dhcpcd
kmod
thunderbird

Powertop2 (and powertop) just doesnt remember my tunables after reboot and I have no Idea why....

Network Problems:
Since this update I can't connect to any network via wlan or ethernet
I'm using wicd. When I try to connect to my wlan, wicd does the whole "putting interface up" and "obtaining IP-Adress" but then it just says "not connected"
Also when i plugin a cable I just doesnt do anything and wicd still shows the wifi networks (I checked "switch to wired interface if possible")

iwconfig
lo        no wireless extensions.

wlan0     IEEE 802.11abg  ESSID:off/any  
          Mode:Managed  Frequency:2.417 GHz  Access Point: Not-Associated   
          Tx-Power=15 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:on
          
eth0      no wireless extensions.
lspci

00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 04)
	Subsystem: Lenovo Device 21ce
	Kernel driver in use: e1000e
03:00.0 Network controller: Intel Corporation Centrino Advanced-N 6205 (rev 34)
	Subsystem: Intel Corporation Centrino Advanced-N 6205 AGN
	Kernel driver in use: iwlwifi
#
# /etc/rc.conf - Main Configuration for Arch Linux
#
# See 'man 5 rc.conf' for more details
#

# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Vienna"
KEYMAP="de"
CONSOLEFONT=
CONSOLEMAP=
LOCALE=
DAEMON_LOCALE="yes"
USECOLOR="yes"

# -----------------------------------------------------------------------
# HARDWARE
# -----------------------------------------------------------------------
#
MODULES=(uinput)

UDEV_TIMEOUT=20

USEDMRAID="no"

USEBTRFS="no"

USELVM="no"

# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
HOSTNAME="arch"

interface=eth0
address=
netmask=
broadcast=
gateway=

NETWORK_PERSIST="no"

# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
DAEMONS=(syslog-ng @network crond @wicd dbus gdm @alsa @samba @tlp)

If you need more "configs" or such things tell me please


Desktop PC: AMD Phenom XII 965-Black 8GB-Ram Ge-Force GTX-560ti Corsair Force GT/Crucial M4 Arch-Linux/Windows 7
Gaming Laptop: Intel-I7 2630QM 8GB-Ram Ge-Force GT-540m Ubuntu 12.04
Work Laptop: Intel-I3 2350 8GB-Ram Intel HD-Graphics Arch-Linux

Offline

#2 2012-02-15 23:12:45

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: Cant connect to network anymore

iwlwifi has issues recently. The first thing you can try is disabling hardware encryption - /etc/modprobe.d/modprobe.conf

options iwlwifi swcrypto=1

Then, does the laptop have bluetooth? If yes, try also adding bt_coex_active=0 to the above.

If that won't do it, you'll need to compile your own kernel and apply some patches. Or downgrade to a kernel that you know works.

Offline

#3 2012-02-15 23:20:41

allen875
Member
From: Winchester, VA
Registered: 2011-09-02
Posts: 46
Website

Re: Cant connect to network anymore

Well first thing I notice is that your loading the network and wicd if you read the getting started section on the wicd page of the arch wiki it states that loading both of these will cause problems. I suggest disabling the network daemon and just loading wicd itself and move dbus to load earlier so any software that needs to communicate together can do so.

DAEMONS=(syslog-ng !network dbus crond wicd @alsa @samba @tlp gdm)

Offline

#4 2012-02-15 23:36:27

franzor
Member
Registered: 2012-01-23
Posts: 46

Re: Cant connect to network anymore

@allen875: ok I changed it thanks for the suggestions
@Gusar: I added it but it didnt work hmm

Is there any other way to fix this or do I really have to compile my own kernel?

Does any of you have an idea why my powertop settings reset on reboot?

Thanks for the help!


Desktop PC: AMD Phenom XII 965-Black 8GB-Ram Ge-Force GTX-560ti Corsair Force GT/Crucial M4 Arch-Linux/Windows 7
Gaming Laptop: Intel-I7 2630QM 8GB-Ram Ge-Force GT-540m Ubuntu 12.04
Work Laptop: Intel-I3 2350 8GB-Ram Intel HD-Graphics Arch-Linux

Offline

#5 2012-02-15 23:41:40

morecowbell
Member
From: USA
Registered: 2009-09-10
Posts: 9

Re: Cant connect to network anymore

I'm having similar problems. I think there is a similar/identical issue in this thread https://bbs.archlinux.org/viewtopic.php?pid=1058436

Does your /var/log/wicd/wicd.log look like the one in the other thread?

Offline

#6 2012-02-15 23:45:20

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: Cant connect to network anymore

Another option you can try: 11n_disable=1

If that one won't do it, then yes you'll need to compile. Or downgrade. You could also try wireless-compat, but I don't know if the patch is in there. This one: http://lkml.indiana.edu/hypermail/linux … 00938.html.

Also, may I suggest connecting manually (with wpa_supplicant on the commandline) instead of using wicd? And after connecting fails, look at dmesg output.

Last edited by Gusar (2012-02-15 23:54:09)

Offline

#7 2012-02-15 23:49:42

franzor
Member
Registered: 2012-01-23
Posts: 46

Re: Cant connect to network anymore

I just checked, yes it looks almost the same (except for some forced-refreshes and my try with cable connection which doesnt work either...)


Desktop PC: AMD Phenom XII 965-Black 8GB-Ram Ge-Force GTX-560ti Corsair Force GT/Crucial M4 Arch-Linux/Windows 7
Gaming Laptop: Intel-I7 2630QM 8GB-Ram Ge-Force GT-540m Ubuntu 12.04
Work Laptop: Intel-I3 2350 8GB-Ram Intel HD-Graphics Arch-Linux

Offline

#8 2012-02-15 23:53:16

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: Cant connect to network anymore

From that thread:

[ 1291.610215] wlan0: deauthenticating from 00:22:75:d5:73:d4 by local choice (reason=3)

This means that wicd decided to disconnect for some reason. So yeah, try without wicd.

Offline

#9 2012-02-16 00:00:44

franzor
Member
Registered: 2012-01-23
Posts: 46

Re: Cant connect to network anymore

thats the only line i dont get...
i just cant find the line where the error is

2012/02/16 00:33:06 :: ---------------------------
2012/02/16 00:33:06 :: wicd initializing...
2012/02/16 00:33:06 :: ---------------------------
2012/02/16 00:33:06 :: wicd is version 1.7.1 717
2012/02/16 00:33:06 :: setting backend to external
2012/02/16 00:33:06 :: trying to load backend external
2012/02/16 00:33:06 :: successfully loaded backend external
2012/02/16 00:33:06 :: trying to load backend external
2012/02/16 00:33:06 :: successfully loaded backend external
2012/02/16 00:33:06 :: Automatically detected wireless interface wlan0
2012/02/16 00:33:06 :: setting wireless interface wlan0
2012/02/16 00:33:06 :: automatically detected wired interface eth0
2012/02/16 00:33:06 :: setting wired interface eth0
2012/02/16 00:33:06 :: setting wpa driver wext
2012/02/16 00:33:06 :: setting use global dns to False
2012/02/16 00:33:06 :: setting global dns
2012/02/16 00:33:06 :: global dns servers are None None None
2012/02/16 00:33:06 :: domain is None
2012/02/16 00:33:06 :: search domain is None
2012/02/16 00:33:06 :: setting automatically reconnect when connection drops True
2012/02/16 00:33:06 :: Setting dhcp client to 0
2012/02/16 00:33:06 :: Wireless configuration file found...
2012/02/16 00:33:06 :: Wired configuration file found...
2012/02/16 00:33:06 :: chmoding configuration files 0600...
2012/02/16 00:33:06 :: chowning configuration files root:root...
2012/02/16 00:33:06 :: Using wireless interface...wlan0
2012/02/16 00:33:06 :: Using wired interface...eth0
2012/02/16 00:33:14 :: Autoconnecting...
2012/02/16 00:33:15 :: Attempting to autoconnect with wired interface...
2012/02/16 00:33:15 :: Putting interface down
2012/02/16 00:33:15 :: Releasing DHCP leases...
2012/02/16 00:33:15 :: Setting false IP...
2012/02/16 00:33:15 :: Stopping wpa_supplicant
2012/02/16 00:33:15 :: Flushing the routing table...
2012/02/16 00:33:15 :: Putting interface up...
2012/02/16 00:33:17 :: Running DHCP with hostname arch
2012/02/16 00:33:17 :: dhcpcd[935]: version 5.5.4 starting
2012/02/16 00:33:17 :: 
2012/02/16 00:33:17 :: dhcpcd[935]: eth0: sending IPv6 Router Solicitation
2012/02/16 00:33:17 :: 
2012/02/16 00:33:17 :: dhcpcd[935]: eth0: sendmsg: Cannot assign requested address
2012/02/16 00:33:17 :: 
2012/02/16 00:33:17 :: dhcpcd[935]: eth0: broadcasting for a lease
2012/02/16 00:33:17 :: 
2012/02/16 00:33:18 :: dhcpcd[935]: eth0: offered 192.168.1.13 from 192.168.1.1
2012/02/16 00:33:18 :: 
2012/02/16 00:33:18 :: dhcpcd[935]: eth0: acknowledged 192.168.1.13 from 192.168.1.1
2012/02/16 00:33:18 :: 
2012/02/16 00:33:18 :: dhcpcd[935]: eth0: checking for 192.168.1.13
2012/02/16 00:33:18 :: 
2012/02/16 00:33:18 :: dhcpcd[935]: eth0: Router Advertisement from fe80::a221:b7ff:feab:9a88
2012/02/16 00:33:18 :: 
2012/02/16 00:33:18 :: dhcpcd[935]: forked to background, child pid 963
2012/02/16 00:33:18 :: 
2012/02/16 00:33:18 :: 
2012/02/16 00:33:18 :: DHCP connection successful
2012/02/16 00:33:18 :: Connecting thread exiting.
2012/02/16 00:33:20 :: No wired connection present, attempting to autoconnect to wireless network
2012/02/16 00:33:23 :: trying to automatically connect to...Virus!!!
2012/02/16 00:33:23 :: Connecting to wireless network Virus!!!
2012/02/16 00:33:24 :: Putting interface down
2012/02/16 00:33:24 :: Releasing DHCP leases...
2012/02/16 00:33:24 :: Setting false IP...
2012/02/16 00:33:25 :: Stopping wpa_supplicant
2012/02/16 00:33:25 :: Flushing the routing table...
2012/02/16 00:33:25 :: Putting interface up...
2012/02/16 00:33:27 :: Generating psk...
2012/02/16 00:33:27 :: Attempting to authenticate...
2012/02/16 00:33:30 :: wpa_supplicant rescan forced...
2012/02/16 00:33:31 :: Running DHCP with hostname arch
2012/02/16 00:33:31 :: dhcpcd[1051]: version 5.5.4 starting
2012/02/16 00:33:31 :: 
2012/02/16 00:33:31 :: dhcpcd[1051]: wlan0: sending IPv6 Router Solicitation
2012/02/16 00:33:31 :: 
2012/02/16 00:33:31 :: dhcpcd[1051]: wlan0: sendmsg: Cannot assign requested address
2012/02/16 00:33:31 :: 
2012/02/16 00:33:31 :: dhcpcd[1051]: wlan0: broadcasting for a lease
2012/02/16 00:33:31 :: 
2012/02/16 00:33:32 :: dhcpcd[1051]: wlan0: offered 192.168.1.12 from 192.168.1.1
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: dhcpcd[1051]: wlan0: acknowledged 192.168.1.12 from 192.168.1.1
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: dhcpcd[1051]: wlan0: checking for 192.168.1.12
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: dhcpcd[1051]: received RA for unexpected interface from fe80::a221:b7ff:feab:9a88
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: dhcpcd[1051]: wlan0: Router Advertisement from fe80::a221:b7ff:feab:9a88
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: dhcpcd[1051]: forked to background, child pid 1137
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: 
2012/02/16 00:33:32 :: DHCP connection successful
2012/02/16 00:33:32 :: not verifying
2012/02/16 00:33:32 :: Connecting thread exiting.
2012/02/16 00:33:36 :: Sending connection attempt result success
2012/02/16 00:33:41 :: Sending connection attempt result success
2012/02/16 00:44:55 :: Connecting to wireless network Virus!!!
2012/02/16 00:44:56 :: Putting interface down
2012/02/16 00:44:56 :: Connecting to wireless network Virus!!!
2012/02/16 00:44:56 :: Releasing DHCP leases...
2012/02/16 00:44:56 :: Setting false IP...
2012/02/16 00:44:56 :: Stopping wpa_supplicant
2012/02/16 00:44:56 :: Flushing the routing table...
2012/02/16 00:44:56 :: Putting interface up...
2012/02/16 00:44:57 :: Putting interface down
2012/02/16 00:44:57 :: Releasing DHCP leases...
2012/02/16 00:44:57 :: Setting false IP...
2012/02/16 00:44:57 :: Stopping wpa_supplicant
2012/02/16 00:44:57 :: Flushing the routing table...
2012/02/16 00:44:57 :: Putting interface up...
2012/02/16 00:44:57 :: Connecting to wireless network Virus!!!
2012/02/16 00:44:58 :: Putting interface down
2012/02/16 00:44:58 :: Releasing DHCP leases...
2012/02/16 00:44:58 :: Setting false IP...
2012/02/16 00:44:58 :: Stopping wpa_supplicant
2012/02/16 00:44:58 :: Flushing the routing table...
2012/02/16 00:44:58 :: Putting interface up...
2012/02/16 00:44:58 :: Generating psk...
2012/02/16 00:44:59 :: Attempting to authenticate...
2012/02/16 00:44:59 :: Generating psk...
2012/02/16 00:44:59 :: Attempting to authenticate...
2012/02/16 00:45:08 :: WARNING: Timed out waiting for interface to come up
2012/02/16 00:45:08 :: Generating psk...
2012/02/16 00:45:08 :: Attempting to authenticate...
2012/02/16 00:45:11 :: wpa_supplicant rescan forced...
2012/02/16 00:45:12 :: wpa_supplicant rescan forced...
2012/02/16 00:45:12 :: wpa_supplicant rescan forced...
2012/02/16 00:45:39 :: wpa_supplicant authentication may have failed.
2012/02/16 00:45:39 :: connect result is failed
2012/02/16 00:45:39 :: exiting connection thread
2012/02/16 00:45:40 :: wpa_supplicant authentication may have failed.
2012/02/16 00:45:40 :: connect result is failed
2012/02/16 00:45:40 :: exiting connection thread
2012/02/16 00:45:49 :: wpa_supplicant authentication may have failed.
2012/02/16 00:45:49 :: connect result is failed
2012/02/16 00:45:49 :: exiting connection thread
2012/02/16 00:45:53 :: Sending connection attempt result bad_pass

(and yes my wifi ssid is virus, my neighbours have stopped trying to connect ever since smile )

Last edited by franzor (2012-02-16 00:01:14)


Desktop PC: AMD Phenom XII 965-Black 8GB-Ram Ge-Force GTX-560ti Corsair Force GT/Crucial M4 Arch-Linux/Windows 7
Gaming Laptop: Intel-I7 2630QM 8GB-Ram Ge-Force GT-540m Ubuntu 12.04
Work Laptop: Intel-I3 2350 8GB-Ram Intel HD-Graphics Arch-Linux

Offline

#10 2012-02-19 16:57:21

Marin M.
Banned
Registered: 2011-11-12
Posts: 12

Re: Cant connect to network anymore

I have the same problem since a few days. wicd starts connecting normally, then the interface shuts down and wicd-gtk shows “Not connected”. When I restart wicd, the connection works sometimes.

# lspci -v
04:05.0 Ethernet controller: Atheros Communications Inc. AR2413/AR2414 Wireless Network Adapter [AR5005G(S) 802.11bg] (rev 01)
	Subsystem: AMBIT Microsystem Corp. Device 0418
	Flags: bus master, medium devsel, latency 168, IRQ 18
	Memory at c3000000 (32-bit, non-prefetchable) [size=64K]
	Capabilities: [44] Power Management version 2
	Kernel driver in use: ath5k
DAEMONS=(syslog-ng dbus !network !dhcdbd !networkmanager wicd crond @alsa)
$ cat /var/log/errors.log
Feb 19 12:47:38 localhost dhcpcd[5195]: dhcpcd not running
Feb 19 12:47:38 localhost dhcpcd[5203]: dhcpcd not running
Feb 19 12:47:39 localhost dhcpcd[5209]: dhcpcd not running
Feb 19 12:47:39 localhost dhcpcd[5215]: dhcpcd not running
Feb 19 12:47:41 localhost dhcpcd[5233]: wlan0: sendmsg: Cannot assign requested address
[2012-02-18 15:17] Running 'pacman -Syu'
[2012-02-18 15:17] synchronizing package lists
[2012-02-18 15:17] starting full system upgrade
[2012-02-18 15:19] upgraded firefox (10.0.1-1 -> 10.0.2-1)
[2012-02-18 15:19] upgraded firefox-i18n-fr (10.0.1-1 -> 10.0.2-1)
[2012-02-18 15:19] upgraded flashplugin (11.1.102.55-1 -> 11.1.102.62-1)
[2012-02-18 15:19] upgraded grep (2.10-2 -> 2.10-3)
[2012-02-18 15:19] upgraded intltool (0.50.0-1 -> 0.50.1-1)
[2012-02-18 15:19] upgraded kmod (5-2 -> 5-4)
[2012-02-18 15:19] upgraded libcaca (0.99.beta17-1 -> 0.99.beta17-2)
[2012-02-18 15:19] upgraded libidl2 (0.8.14-1 -> 0.8.14-2)
[2012-02-18 15:19] upgraded libpng (1.5.8-1 -> 1.5.8-2)
[2012-02-18 15:19] upgraded libxdamage (1.1.3-1 -> 1.1.3-2)
[2012-02-18 15:19] upgraded libxrender (0.9.6-1 -> 0.9.6-2)
[2012-02-18 15:20] upgraded linux (3.2.5-1 -> 3.2.6-2)
[2012-02-18 15:20] upgraded nodejs (0.6.10-1 -> 0.6.11-1)
[2012-02-18 15:20] upgraded obconf (2.0.3.git20100309-2 -> 2.0.3.git20100309-3)
[2012-02-18 15:20] upgraded opencore-amr (0.1.2-1 -> 0.1.2-2)
[2012-02-18 15:20] upgraded openslp (1.2.1-3 -> 1.2.1-4)
[2012-02-18 15:20] upgraded pciutils (3.1.8-1 -> 3.1.9-1)
[2012-02-18 15:20] upgraded shadow (4.1.4.3-5 -> 4.1.5-3)
[2012-02-18 15:20] upgraded unzip (6.0-5 -> 6.0-6)
[2012-02-18 15:20] upgraded wine (1.4rc3-1 -> 1.4rc4-1)
[2012-02-18 15:20] Updating font cache... done.
[2012-02-18 15:20] upgraded xorg-fonts-misc (1.0.1-1 -> 1.0.1-2)

Last edited by Marin M. (2012-02-19 17:02:52)

Offline

#11 2012-02-19 18:43:27

Marin M.
Banned
Registered: 2011-11-12
Posts: 12

Re: Cant connect to network anymore

And the wired network doesn't work neither with wicd.

If I disable wicd and I use dhcpd, the wired network works.

Offline

#12 2012-03-02 08:21:27

Marin M.
Banned
Registered: 2011-11-12
Posts: 12

Re: Cant connect to network anymore

The problem is corrected in the last kernel.

Last edited by Marin M. (2012-05-02 13:54:22)

Offline

#13 2012-03-04 19:43:28

Marin M.
Banned
Registered: 2011-11-12
Posts: 12

Re: Cant connect to network anymore

The problem has came back today sad But wpa_supplicant + dhcpcd still works.

Offline

#14 2012-03-09 07:24:57

killer1804
Member
From: Russia, Zlatoust
Registered: 2010-07-26
Posts: 56

Re: Cant connect to network anymore

I have the same problem - the connection is working intermittently.
I have in my computer pci-WiFi card. I am using hostapd in order to provide Internet access to its Tablet PC via Wi-Fi.

lspci says that I have [AR5005G (S) 802.11bg]
my kernel is Linux homelinux 3.2.9-1-ARCH

Yesterday managed to make connection and it worked a few hours, but no load - ie the tablet just lay there and no one was using, the ping test showed that the connection works fine, but when I ran a network application - the connection was lost, then from the computer to do a ping test have failed.
Was just restart the computer and the tablet.
Perhaps to help load the kernel module with specific parameters? or  loading a some another  kernel module?

Last edited by killer1804 (2012-03-09 07:26:15)

Offline

#15 2012-03-11 17:16:33

kazimir
Member
Registered: 2012-01-20
Posts: 79

Re: Cant connect to network anymore

I'm experiencing a similar issue.

Wicd used to work flawlessly with my home wifi, for a little while it disconnects right after successfully connecting whatever I try (removing settings, disabling wlan power saving, etc.). The weird part is that this only occurs with my home wifi network, wicd still work with the other wireless networks I tried, including one with the exact same router and configuration (only password differs).

Using wpa_supplicant and dhcpd from cli works.

Offline

#16 2012-04-04 20:16:07

Marin M.
Banned
Registered: 2011-11-12
Posts: 12

Re: Cant connect to network anymore

The problem is still here. I have to use wpa_supplicant from CLI half the time.

Offline

#17 2012-09-02 09:10:52

the_isz
Member
Registered: 2009-04-14
Posts: 280

Re: Cant connect to network anymore

Hey guys,

I know, this thread is rather old, but as it is still unresolved I thought I
should note how I just solved an issue that looks just like this one.

Steps to do:

  1. Edit /etc/conf.d/dhcpcd and remove the "-q" option from DHCPCD_ARGS

  2. Stop wicd

  3. Kill the dhcpcd process

  4. Start wicd

That solved the problem for me. Seems like wicd is parsing dhcpcd's output which
is suppressed by the -q option.

Regards,

Isszy

Offline

#18 2012-09-02 09:32:58

6arms1leg
Member
Registered: 2011-04-19
Posts: 22

Re: Cant connect to network anymore

thanks for your effort, but your solution doesnt seem to work on my system.
removing or adding the "-q" option from DHCPCD_ARGS makes no difference to wicd here. i really wished this problem had been solved now.

thanks anyway.

Offline

#19 2012-09-02 09:54:07

zacariaz
Member
From: Denmark
Registered: 2012-01-18
Posts: 539

Re: Cant connect to network anymore

I wasn't aware of this issue before changing to systemd, but as systemd doesn't us an rc.conf...

Well, you see the problem.

In any case, the problems I experience is just the occasional failure to connect on boot. That was never a problem before.


I am a philosopher, of sorts, not a troll or an imbecile.
My apologies that this is not always obvious, despite my best efforts.

Offline

#20 2012-09-02 21:23:47

the_isz
Member
Registered: 2009-04-14
Posts: 280

Re: Cant connect to network anymore

6arms1leg wrote:

thanks for your effort, but your solution doesnt seem to work on my system.
removing or adding the "-q" option from DHCPCD_ARGS makes no difference to wicd here. i really wished this problem had been solved now.

thanks anyway.

Sad to hear sad Will confirm that really was the issue on occasion.

Offline

#21 2012-09-10 23:16:20

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: Cant connect to network anymore

zacariaz wrote:

I wasn't aware of this issue before changing to systemd, but as systemd doesn't us an rc.conf...

Well, you see the problem.

Not exactly, no...


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

Board footer

Powered by FluxBB