RupertD
Anmeldungsdatum: 6. April 2010
Beiträge: Zähle...
Wohnort: Wien
|
Hallo! Ich betreibe einen Fileserver unter Ubuntu, der per Kabel angebunden ist.
Da er in einer Ecke der Wohnung steht, die sehr schlecht mit WLAN versorgt ist und der Fileserver ja eh durchgängig an ist, warum kein Soft-AP - soweit der Plan... Also den netis AC1200 WF2190 gekauft und den von Ubuntu angebotenen Treiber installiert.
Entsprechend der sich in vielen Howtos wiederholenden Empfehlung der networkmanager deinstalliert. Leider ist das einzige Howto, das meinen Wünschen (kein weiterer DHCP/...) entspricht für Fedora geschrieben und unter Ubuntu gibt es die dabei verwendeten Netzwerkskripte nicht https://opensysnotes.wordpress.com/2015/03/16/hostapd-configuration-for-rtl8812/ Ganz grundsätzlich wird der Adapter erkannt und scheint auch im Master-Mode zu funktionieren:
| root@Fileserver:~# lsusb|grep 8812
Bus 001 Device 002: ID 0bda:8812 Realtek Semiconductor Corp. RTL8812AU 802.11a/b/g/n/ac WLAN Adapter
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 | root@Fileserver:~# ifconfig
enx048d388f1b79 Link encap:Ethernet Hardware Adresse 04:8d:38:8f:1b:79
UP BROADCAST MULTICAST MTU:1500 Metrik:1
RX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
TX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Träger:0
Kollisionen:0 Sendewarteschlangenlänge:1000
RX-Bytes:0 (0.0 B) TX-Bytes:0 (0.0 B)
eth0 Link encap:Ethernet Hardware Adresse 90:e6:ba:97:5f:5a
inet Adresse:10.10.10.16 Bcast:10.10.10.255 Maske:255.255.255.0
inet6-Adresse: fe80::92e6:baff:fe97:5f5a/64 Gültigkeitsbereich:Verbindung
UP BROADCAST RUNNING MULTICAST MTU:1500 Metrik:1
RX-Pakete:1747734 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
TX-Pakete:349387 Fehler:0 Verloren:0 Überläufe:0 Träger:0
Kollisionen:0 Sendewarteschlangenlänge:1000
RX-Bytes:168893994 (168.8 MB) TX-Bytes:17556928366 (17.5 GB)
Interrupt:18
lo Link encap:Lokale Schleife
inet Adresse:127.0.0.1 Maske:255.0.0.0
inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
UP LOOPBACK RUNNING MTU:65536 Metrik:1
RX-Pakete:416 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
TX-Pakete:416 Fehler:0 Verloren:0 Überläufe:0 Träger:0
Kollisionen:0 Sendewarteschlangenlänge:0
RX-Bytes:51906 (51.9 KB) TX-Bytes:51906 (51.9 KB)
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | root@Fileserver:~# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 no wireless extensions.
enx048d388f1b79 unassociated Nickname:"<WIFI@REALTEK>"
Mode:Master Frequency=2.412 GHz Access Point: Not-Associated
Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
|
Seltsamerweise gibt "iw -list" nichts aus, was gemeinhin als schlechter Indikator zu werten ist, soweit ich gelesen habe. Da iwvonfig aber als Mode Master angibt, nehme ich an, dass es soweit passt. Unter Interfaces habe ich folgendes eingetragen:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | root@Fileserver:~# cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto enx048d388f1b79
iface enx048d388f1b79 inet manual
wireless-mode master
wireless-essid pivotpoint
#Bridge interface
#auto br0
#iface br0 inet static
# address 10.1.1.1
# network 10.1.1.0
# netmask 255.255.255.0
# broadcast 10.1.1.255
# bridge-ports eth0 enx048d388f1b79
|
Die Bridge ist vorläufig auskommentiert, weil mir das den Zugriff per SSH zerschossen hatte. Um die Einrichtung wollte ich mich im zweiten Schritt kümmern und erst einmal überhaupt den Soft-AP einrichten. Dazu die hostapd.conf entnommen im wesentlichen dem Howto weiter oben verlinkt für Fedora:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 | root@Fileserver:~# cat /etc/hostapd/hostapd.conf
interface=enx048d388f1b79
bridge=br0
driver=nl80211
logger_syslog=1
logger_syslog_level=2
logger_stdout=1
logger_stdout_level=2
ctrl_interface=/var/run/hostapd
ssid=rdtest123
country_code=DE
ieee80211h=1
ieee80211d=1
hw_mode=a
channel=44
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wmm_enabled=1
ieee80211n=1
ht_capab=[HT40+][SHORT-GI-20][SHORT-GI-40][DSSS_CCK-40][SMPS-STATIC][MAX-AMSDU-7935]
# official documentation comment is misleading here, to use WPA2, use wpa=2 here, not 1 like described in official sample configuration
wpa=2
wpa_passphrase="xxxxxx"
wpa_key_mgmt=WPA-PSK WPA-PSK-SHA256
wpa_pairwise=CCMP
rsn_pairwise=CCMP
|
das scheint allerdings nicht zu passen:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | root@Fileserver:~# hostapd -dd /etc/hostapd/hostapd.conf
random: Trying to read entropy from /dev/random
Configuration file: /etc/hostapd/hostapd.conf
nl80211: Driver does not support authentication/association or connect commands
nl80211: deinit ifname=enx048d388f1b79 disabled_11b_rates=0
nl80211: Remove monitor interface: refcount=0
netlink: Operstate: ifindex=4 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
nl80211: Set mode ifindex 4 iftype 2 (STATION)
nl80211: Failed to set interface 4 to mode 2: -19 (No such device)
nl80211 driver initialization failed.
hostapd_interface_deinit_free(0x80487950)
hostapd_interface_deinit_free: num_bss=1 conf->num_bss=1
hostapd_interface_deinit(0x80487950)
enx048d388f1b79: interface state UNINITIALIZED->DISABLED
hostapd_bss_deinit: deinit bss enx048d388f1b79
enx048d388f1b79: AP-DISABLED
hostapd_cleanup(hapd=0x804885d8 (enx048d388f1b79))
hostapd_free_hapd_data: Interface enx048d388f1b79 wasn't started
hostapd_interface_deinit_free: driver=(nil) drv_priv=(nil) -> hapd_deinit
hostapd_interface_free(0x80487950)
hostapd_interface_free: free hapd 0x804885d8
hostapd_cleanup_iface(0x80487950)
hostapd_cleanup_iface_partial(0x80487950)
hostapd_cleanup_iface: free iface=0x80487950
|
Könnte mir bitte jemand weiterhelfen?
|
Hans9876543210
Anmeldungsdatum: 2. Januar 2011
Beiträge: 3741
|
Moin, RupertD schrieb: root@Fileserver:~# ifconfig
eth0 Link encap:Ethernet Hardware Adresse 90:e6:ba:97:5f:5a
inet Adresse:10.10.10.16 Bcast:10.10.10.255 Maske:255.255.255.0
root@Fileserver:~# cat /etc/network/interfaces
#Bridge interface
#auto br0
#iface br0 inet static
# address 10.1.1.1
# network 10.1.1.0
# netmask 255.255.255.0
# broadcast 10.1.1.255
# bridge-ports eth0 enx048d388f1b79 Die Bridge ist vorläufig auskommentiert, weil mir das den Zugriff per SSH zerschossen hatte. Um die Einrichtung wollte ich mich im zweiten Schritt kümmern und erst einmal überhaupt den Soft-AP einrichten.
Die IP 10.1.1.1 der Brücke kommt aus einem ganz anderen Netzbereich, die kannst du auch so ohne weiteres nicht erreichen. Wg des Treibers, schau mal ins Wiki unter:
Realtek, eventuell musst du das Paket rtl8812au-dkms installieren (wenn die Angabe Wily richtig ist, was ich bei einem Fileserver merkwürdig finde). Zum eigentlichen Problem wären nach der evtl. erforderlichen Treiberinstallation folgende ergänzende Ausgaben hilfreich: | cat /etc/udev/rules.d/70-persistent-net.rules | egrep -i 'device|sub' -A3
lsmod
iwlist chan
sudo iwlist scan
egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog
dmesg | egrep 'net|eth|sky|sun|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|r81|rt2|rt3|rt6|rt7|tg3|ssb|wl|b43|b44|ori|pri|p5|zd|ndis|wmi|ns8|FW'
|
(siehe hier) Nebenbei: hier im Wiki gibt es ein Skript für einen (temporären) Accesspoint:
Instant AP
Das würde ich erstmal testen. Anleitungen für andere Linuxe können, müssen aber nicht zwangsweise funktionieren.
|
RupertD
(Themenstarter)
Anmeldungsdatum: 6. April 2010
Beiträge: 3
Wohnort: Wien
|
Hi! Danke schon mal für die Antworten. Zu Wily kommt es folgendermaßen: Ursprünglich lief mal Debian auf dem System, als sich in einer alten Wohnung dann ein Fernseher in Nähe des Fileservers befand, wurde der zeitweise als Media-Player „missbraucht“. Aber unter Debian xbmc ans laufen zu kriegen, erwies sich als erstaunlich kompliziert. Daher einfach schnell Ubuntu drauf getan, Raid importiert, samba.conf kopiert und xbmc war kein Problem mehr. Der Fernseher ist zwar weg, aber Ubunutu ist geblieben… Und ja, mir ist bewusst, dass das nicht übermäßig professionell ist; aber ich bin ja auch eher ein interessierter Laie 😉
In diesem Sinne auch sorry, wenn ich hier im fortgeschrittenen Bereich Anfängerfehler mache, aber mein Linuxwissen beschränkt sich im wesentlichen auf Sortware-Raid und Samba... Der fertige rtl8812au-dkms aus den Ubuntu repositories ist installiert.
Und funktioniert, zumindest soweit ich das beurteilen kann:
dmesg -e
| ...
[ +0,001660] RTL871X: module init start
[ +0,000003] RTL871X: rtl8812au v4.3.8_12175.20140902
[ +0,000002] RTL871X: build time: Mar 11 2016 17:30:56
[ +0,888962] RTL871X: rtw_ndev_init(wlan0)
[ +0,000292] usbcore: registered new interface driver rtl8812au
[ +0,000002] RTL871X: module init ret=0
[ +0,001636] rtl8812au 1-2:1.0 enx048d388f1b79: renamed from wlan0
...
|
Dass es nicht genau nach dem Fedora-how-to funktioniert ist mir soweit klar, aber es heißt ja zumindest auch, dass es ganz grundsätzlich mit der Hardware unter Linux möglich ist - also wie ich hoffe vielleicht ja auch unter Ubuntu... Die von euch verlinkten Artikel Skripte und WLan-Router setzen beide auf eigene DHCP-Server, die, so glaube ich zu wissen, ein eigenes Subnetz aufmachen müssen, was ich ja eigentlich gerne vermeiden würde... Danke auch für den Vorschlag zum Upgrade, bloß da es nicht nur um einen AP, sondern auch um ein Software-Raid-5 geht, tue ich mich etwas schwer die neue Ubuntu-Version vor der offiziellen Freigabe zu installieren. Falls ich hier mit eurer Hilfe nicht weiter komme, würde ich tendentiell den Monat bis zur Freigabe noch warten wollen vor der Installation. Hier nun die angeforderten Daten: | root@Fileserver:~# cat /etc/udev/rules.d/70-persistent-net.rules | egrep -i 'device|sub' -A3
# PCI device 0x11ab:0x4364 (sky2)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="90:e6:ba:97:5f:5a", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x11ab:0x4364 (sky2)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="90:e6:ba:97:5f:5b", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76 | root@Fileserver:~# lsmod
Module Size Used by
nls_utf8 16384 0
ufs 77824 0
qnx4 16384 0
hfsplus 94208 0
hfs 57344 0
minix 32768 0
ntfs 102400 0
msdos 20480 0
jfs 176128 0
xfs 856064 0
libcrc32c 16384 1 xfs
cfg80211 483328 0
binfmt_misc 20480 1
8812au 790528 0
btrfs 978944 1
snd_hda_codec_hdmi 49152 1
coretemp 16384 0
kvm_intel 159744 0
kvm 454656 1 kvm_intel
serio_raw 16384 0
input_leds 16384 0
snd_hda_intel 32768 4
snd_hda_codec 118784 2 snd_hda_codec_hdmi,snd_hda_intel
snd_hda_core 57344 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
snd_hwdep 16384 1 snd_hda_codec
snd_pcm 90112 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
snd_seq_midi 16384 0
snd_seq_midi_event 16384 1 snd_seq_midi
snd_rawmidi 28672 1 snd_seq_midi
lpc_ich 20480 0
snd_seq 57344 2 snd_seq_midi_event,snd_seq_midi
snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
snd_timer 32768 2 snd_pcm,snd_seq
snd 69632 17 snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
soundcore 16384 1 snd
x38_edac 16384 0
shpchp 32768 0
edac_core 49152 1 x38_edac
asus_atk0110 20480 0
mac_hid 16384 0
parport_pc 32768 0
ppdev 20480 0
lp 20480 0
parport 45056 3 lp,ppdev,parport_pc
autofs4 40960 2
raid10 49152 0
raid1 36864 0
raid0 20480 0
multipath 16384 0
linear 16384 0
raid456 94208 1
async_raid6_recov 16384 1 raid456
async_memcpy 16384 2 raid456,async_raid6_recov
async_pq 16384 2 raid456,async_raid6_recov
async_xor 16384 3 async_pq,raid456,async_raid6_recov
async_tx 16384 5 async_pq,raid456,async_xor,async_memcpy,async_raid6_recov
xor 28672 2 btrfs,async_xor
raid6_pq 102400 4 async_pq,raid456,btrfs,async_raid6_recov
pata_acpi 16384 0
hid_generic 16384 0
usbhid 49152 0
hid 98304 2 hid_generic,usbhid
nouveau 1265664 5
mxm_wmi 16384 1 nouveau
wmi 20480 2 mxm_wmi,nouveau
video 24576 1 nouveau
i2c_algo_bit 16384 1 nouveau
ahci 32768 6
ttm 86016 1 nouveau
libahci 32768 1 ahci
drm_kms_helper 118784 1 nouveau
drm 303104 8 ttm,drm_kms_helper,nouveau
sky2 53248 0
pata_jmicron 16384 0
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41 | root@Fileserver:~# iwlist chan
lo no frequency information.
eth0 no frequency information.
eth1 no frequency information.
enx048d388f1b79 32 channels in total; available frequencies :
Channel 01 : 2.412 GHz
Channel 02 : 2.417 GHz
Channel 03 : 2.422 GHz
Channel 04 : 2.427 GHz
Channel 05 : 2.432 GHz
Channel 06 : 2.437 GHz
Channel 07 : 2.442 GHz
Channel 08 : 2.447 GHz
Channel 09 : 2.452 GHz
Channel 10 : 2.457 GHz
Channel 11 : 2.462 GHz
Channel 12 : 2.467 GHz
Channel 13 : 2.472 GHz
Channel 36 : 5.18 GHz
Channel 40 : 5.2 GHz
Channel 44 : 5.22 GHz
Channel 48 : 5.24 GHz
Channel 52 : 5.26 GHz
Channel 56 : 5.28 GHz
Channel 60 : 5.3 GHz
Channel 64 : 5.32 GHz
Channel 100 : 5.5 GHz
Channel 104 : 5.52 GHz
Channel 108 : 5.54 GHz
Channel 112 : 5.56 GHz
Channel 116 : 5.58 GHz
Channel 120 : 5.6 GHz
Channel 124 : 5.62 GHz
Channel 128 : 5.64 GHz
Channel 132 : 5.66 GHz
Channel 136 : 5.68 GHz
Channel 140 : 5.7 GHz
Current Frequency=2.412 GHz (Channel 1)
|
| root@Fileserver:~# sudo iwlist scan
lo Interface doesn't support scanning.
eth0 Interface doesn't support scanning.
eth1 Interface doesn't support scanning.
enx048d388f1b79 No scan results
|
| root@Fileserver:~# egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog
Mar 15 09:50:29 Fileserver kernel: [215738.078576] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
Mar 15 09:50:29 Fileserver kernel: [215738.078589] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
Mar 15 09:50:29 Fileserver kernel: [215738.078599] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
Mar 15 10:13:13 Fileserver com.ubuntu.OneConf[1820]: WARNING:oneconf.networksync.netstatus:failed to init network state watcher 'org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files'
Mar 15 14:13:03 Fileserver dhclient: DHCPREQUEST of 10.10.10.16 on eth0 to 10.10.10.1 port 67 (xid=0xb000184)
Mar 15 16:16:13 Fileserver com.ubuntu.OneConf[1820]: WARNING:oneconf.networksync.netstatus:failed to init network state watcher 'org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files'
Mar 15 17:16:06 Fileserver kernel: [242475.630579] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
Mar 15 17:16:06 Fileserver kernel: [242475.630591] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
Mar 15 17:16:06 Fileserver kernel: [242475.630601] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86 | root@Fileserver:~# dmesg | egrep 'net|eth|sky|sun|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|r81|rt2|rt3|rt6|rt7|tg3|ssb|wl|b43|b44|ori|pri|p5|zd|ndis|wmi|ns8|FW'
[ 0.014951] Initializing cgroup subsys net_cls
[ 0.014956] Initializing cgroup subsys net_prio
[ 0.014993] CPU0: Thermal monitoring enabled (TM1)
[ 0.100565] mtrr: your CPUs had inconsistent variable MTRR settings
[ 0.794217] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.794787] audit: initializing netlink subsys (disabled)
[ 0.813895] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 0.813936] PPP generic driver version 2.4.2
[ 0.822880] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.190233] sky2: driver version 1.30
[ 1.190325] sky2 0000:05:00.0: Yukon-2 EC Ultra chip revision 3
[ 1.196508] sky2 0000:05:00.0 eth0: addr 90:e6:ba:97:5f:5a
[ 1.196624] sky2 0000:03:00.0: Yukon-2 EC Ultra chip revision 3
[ 1.196914] sky2 0000:03:00.0 eth1: addr 90:e6:ba:97:5f:5b
[ 1.217765] wmi: Mapper loaded
[ 1.575885] fbcon: nouveaufb (fb0) is primary device
[ 4.880008] raid6: using algorithm sse2x2 gen() 4757 MB/s
[ 4.880011] raid6: using ssse3x1 recovery algorithm
[ 4.983379] md/raid:md0: raid level 5 active with 4 out of 4 devices, algorithm 2
[ 4.983381] RAID conf printout:
[ 5.149079] md: multipath personality registered for level -4
[ 5.479121] systemd[1]: NetworkManager.service: Cannot add dependency job, ignoring: Unit NetworkManager.service is masked.
[ 5.479145] systemd[1]: NetworkManager-wait-online.service: Cannot add dependency job, ignoring: Unit NetworkManager-wait-online.service is masked.
[ 6.924917] sky2 0000:05:00.0 eth0: enabling interface
[ 6.925375] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6.927080] Adding 2095100k swap on /dev/sdc5. Priority:-1 extents:1 across:2095100k SSFS
[ 7.808814] RTL871X: rtl8812au v4.3.8_12175.20140902
[ 8.697778] RTL871X: rtw_ndev_init(wlan0)
[ 8.698070] usbcore: registered new interface driver rtl8812au
[ 8.699708] rtl8812au 1-2:1.0 enx048d388f1b79: renamed from wlan0
[ 9.926475] sky2 0000:05:00.0 eth0: Link is up at 1000 Mbps, full duplex, flow control both
[ 9.926495] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 18.555808] audit_printk_skb: 36 callbacks suppressed
[ 18.555813] audit: type=1400 audit(1457816109.182:23): apparmor="DENIED" operation="open" profile="/usr/lib/telepathy/mission-control-5" name="/usr/share/dconf/profile/gdm" pid=1625 comm="mission-control" requested_mask="r" denied_mask="r" fsuid=121 ouid=0
[29207.018283] ACPI Error: Divide by zero (20150619/utmath-163)
[29207.018293] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[29207.018303] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[29207.018310] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[30428.210433] ACPI Error: Divide by zero (20150619/utmath-163)
[30428.210443] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[30428.210452] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[30428.210460] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[38116.182571] ACPI Error: Divide by zero (20150619/utmath-163)
[38116.182583] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[38116.182596] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[38116.182606] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[39667.706583] ACPI Error: Divide by zero (20150619/utmath-163)
[39667.706595] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[39667.706607] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[39667.706617] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[45503.726588] ACPI Error: Divide by zero (20150619/utmath-163)
[45503.726600] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[45503.726612] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[45503.726622] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[57185.578669] ACPI Error: Divide by zero (20150619/utmath-163)
[57185.578681] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[57185.578693] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[57185.578703] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[90989.942558] ACPI Error: Divide by zero (20150619/utmath-163)
[90989.942570] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[90989.942582] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[90989.942592] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[176728.082609] ACPI Error: Divide by zero (20150619/utmath-163)
[176728.082620] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[176728.082633] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[176728.082643] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[188399.990544] ACPI Error: Divide by zero (20150619/utmath-163)
[188399.990556] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[188399.990568] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[188399.990578] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[202524.586559] ACPI Error: Divide by zero (20150619/utmath-163)
[202524.586571] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[202524.586584] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[202524.586594] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...
[208867.038139] hfs: can't find a HFS filesystem on dev sdc2
mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...
[215738.078564] ACPI Error: Divide by zero (20150619/utmath-163)
[215738.078576] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[215738.078589] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[215738.078599] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[242475.630567] ACPI Error: Divide by zero (20150619/utmath-163)
[242475.630579] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.SIOR.HWF7] (Node f6091a68), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[242475.630591] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.FGET] (Node f60930a8), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
[242475.630601] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ASOC.RFAN] (Node f6093168), AE_AML_DIVIDE_BY_ZERO (20150619/psparse-536)
|
| root@Fileserver:~# iw list
root@Fileserver:~#
|
|