EasyOS version 2.3.2, June 22, 2020

For talk and support relating specifically to Puppy derivatives
Message
Author
User avatar
alibadrelsayed
Posts: 18
Joined: Tue 29 Jan 2019, 09:01

Huawei E173z-1 not detected

#1301 Post by alibadrelsayed »

My Huawei E173z-1 can not be detected by EasyOS 1.0 , any solutions???

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1302 Post by rufwoof »

Barry, woof-e oe pyro 1.0 (using 20th Jan version of woof) ... during the 2createpackages stage by chance noticed that the xf86 video rendition reported a unable to recognise format of local reproduction of input file /usr/lib/xorg/modules/v10002d.uc
and
/usr/lib/xorg/modules/v20002d.uc
Or something to that effect (quickly scribbled down, so a guide only).
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

Re: Huawei E173z-1 not detected

#1303 Post by rufwoof »

alibadrelsayed wrote:My Huawei E173z-1 can not be detected by EasyOS 1.0 , any solutions???
Missing firmware/modules ??

Given that you're booting from the USB then the firmware/modules to support that device would have to be included within the initial base, which I suspect it isn't.

I did a cursory search but didn't find anything obvious as to which firmware/modules might be required for that device. You might like to have a read through the Missing Firmware thread.

If you could boot via other means, then Menu, System, BootManager configure bootup ... and selecting the 'Click here to add a new module' (if you know what module that needs to be loaded - perhaps try Broadcom, and any Huawei modules) could potentially resolve the problem
Last edited by rufwoof on Wed 30 Jan 2019, 21:01, edited 1 time in total.
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1304 Post by rufwoof »

rufwoof wrote:Barry, woof-e oe pyro 1.0 (using 20th Jan version of woof) ...
Just to report that using the devx built during woof'ing Pyro I sfs got the kernel source and ran make ... which produced the arch/x86_64/boot/bzImage without any hitches and replacing the original vmlinuz (kernel) with that bzImage boots fine.

Code: Select all

# uname -a
Linux EASYPC27030 4.14.91 #2 SMP Wed Jan 30 19:04:31 GMT 2019 x86_64 x86_64 x86_64 GNU/Linux
All built using frugally installed (HDD sda1) Pyro 1.0 (with the build run on a separate ext2 sda3 (ext2 because I share that with OpenBSD) partition (I use sda2 as Linux swap)).
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

Alt-F6 flip desktop

#1305 Post by rufwoof »

Pyro's jwm default setting has alt-F6 key combination set to minimise window. In Easy container you in effect minimise the Xephyr window (DISPLAY :1) to reveal the main desktop (Xephyr window is set to full screen, so no title bar is seen) i.e. 'flip window' back to the main window (DISPLAY :0)

A problem with that however is that to clear your browser session the key sequence is ctrl-shift-delete, and pressing ctrl-shift as part of that disables subsequent alt-F6 key combinations - you have to press ctrl-shift again to get that alt-F6 action back again.

Wondering if the 'flip desktop' alt-F6 choice should instead be via some other means.

Personally I clear out the browser (ctrl-shift-delete ENTER) regularly, typically after having logged out of one site, so the next site is less able to steal login userid/passwords used on other sites. Haven't really thought through however which alternative key combination to use for minimise window (alt-F6 flip window).

Try it for yourself, in easy container just press ctrl-shift, and then with a window being displayed press alt-F6, and it will just minimise the window but remain inside the easy container, not flip back to the main window. Or maybe its just my UK based setup ???
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1306 Post by rufwoof »

This might be intel/amd specific (ability to use ctrl-alt-Fn to flip between virtual terminals), with that in mind ...

Boot easyOS to the standard desktop and instead of starting the easy container via the desktop icon, open a xterm window and run

Code: Select all

X  :1 vt07
which basically says start another X session using DISPLAY :1 (as DISPLAY :0 will already be being used by the main desktop), starting up that X session on vt07 (ctrl-alt-F7)

Minimise that window (you may have to ctrl-alt-F4 back to the main desktop), as the X command wont return and we can later use Ctrl-C in that window to end the X session.

Open another xterm window and run

Code: Select all

DISPLAY=:1 empty -f ec-chroot easy
which starts the easy container on that DISPLAY :1 (using the normal Xephyr and pflask containment that the easy container is pre-set to use). That xterm window can be closed as once the container is running it continues running in the background.

Now you'll have the standard desktop running on ctrl-alt-F4 and the easy container running on ctrl-alt-F7 (flip between them as desired).

To close the easy container go to the xterm window in the main session and Ctrl-C
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
BarryK
Puppy Master
Posts: 9392
Joined: Mon 09 May 2005, 09:23
Location: Perth, Western Australia
Contact:

Re: Huawei E173z-1 not detected

#1307 Post by BarryK »

alibadrelsayed wrote:My Huawei E173z-1 can not be detected by EasyOS 1.0 , any solutions???
Try running "dmesg" in a terminal, see if it reports unable to load firmware.
[url]https://bkhome.org/news/[/url]

User avatar
BarryK
Puppy Master
Posts: 9392
Joined: Mon 09 May 2005, 09:23
Location: Perth, Western Australia
Contact:

#1308 Post by BarryK »

I am still working on the Rock64 board. Had many issues with compiling the kernel, and getting Easy to boot.

I am hoping to create a skeleton SD-card image that will boot on any Rockchip-based board, and will just have to add latest 'Image' (kernel) and easy.sfs

This arrangement has 'initrd' inside the kernel, and an external BOOT_SPECS file.

Right now, recompiling the kernel, for the umpteenth time. Had issues with aufs compile fail, now fixed.

This is the 4.4.154 kernel, with special patches for the Rockchips. This is the kernel version supported by the Rockchip manufacturer. Upstream kernels do not work so well.
[url]https://bkhome.org/news/[/url]

lp-dolittle
Posts: 156
Joined: Mon 25 Apr 2016, 17:35

EasyOS containers

#1309 Post by lp-dolittle »

@ Barry
@ rufwoof

Lacking in expertise, I only partly can follow your post's reasoning, yet the following question which I already tried to put up for discussion previously might relate to rufwoof's current problems:

Where am I after flipping back via pressing the ALT-F6 combination in any container?

Well, I'm back in the main desktop, but - as a consequence of the ALT-F6 command - a container-icon unavoidably now is present in the menu/applet icon tray at the bottom of the screen, and clicking on it, immediately brings me back into the container which I actually wanted to leave. All container-specific settings use to 'survive' this procedure.

As far as I can see (or suppose), the container is not left in fact, unless its icon in the applet tray is eliminated via the kill or close command (right mouse button click). Restarting the container after this operation brings me back to a 'pristine' (?) container desktop which got rid of all previous settings.

Am I misconceiving the function of the ALT-F6 flip command?
What about container isolation and security when its icon persists (is still present) in the applet tray?

kind regards, and thanks in advance for explaining help!

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1310 Post by rufwoof »

double post
Last edited by rufwoof on Thu 31 Jan 2019, 13:03, edited 1 time in total.
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1311 Post by rufwoof »

For the 'Easy' container you're spot on lp-dolittle. That is the way it is intended to work. The Easy container desktop is in practice just another window, that is set to be full screen, so it looks like a complete desktop (but is just another window).

Alt-F6 is defined to minimise window, so that full-screen'd Easy desktop reduces down to a tray item when Alt-F6 is pressed. There is no Exit option contained within the Easy 'desktop' so you have to right mouse and 'close' its tray item in order to close it down.

The benefit is that X is weak and windows sharing the same X server can relatively easily see/do things in the other windows. So for instance if one window was running a browser and another a root terminal then if the browser had a flaw (common), a remote hacker could conceivably gain command line access to the window running the browser, and then gain access to the window running a root terminal (root command line) ... and do anything from there. What Easy does is in effect block that, the Easy Container window is contained (restricted in what it can do/see of other windows (and the system)). A remote hacker could gain access to root inside the container, but that root is heavily restricted - in effect no different to a heavily restricted normal userid.

The Easy window fundamentally uses Xephyr and pflask to set that all up. Other containers such as the seamonkey and console containers don't use Xephyr, but xorg instead and as such are much weaker in security. For example open a console in the main desktop, and then click the console container desktop item to open another console window. Run xwininfo inside the container console window and then mouse click the main windows console window and it reports back with its windowid ...etc. As a simple example that container console window could for instance use xdotool to activate and send key sequences to the main console. In short the www and console containers have weak levels of containment, that are relatively easily broken out of. The Easy container in contrast is much more difficult to break out of.

Typically a hacker, as just one method/example, needs to gain access to local space that can be written to and/or executed, could be memory, cache, swap or just normal disk area. They then need to get the system to redirect to that, so they might spray the heap, use buffer overflows, or actions that aren't usually expected to occur in a manner that gets the stack pointer to redirect to their code (the cache/swap/disk area mentioned earlier). Often programs are written relatively poorly and contain bugs. A security bug is the same as any other bug, but is one that enables security to be breached. Browsers are a prime target because they relatively easily enable a hacker to get their code into the local system, could be part of a image for example. If additionally its known that a particular browser/version has a bug where if x and y is done then it does something it was not really intended to do, then along with sending that image or whatever to the local system, they'll trigger that action, and they're in. Once in, it can be relatively easy to privilege elevate to root level, at which point the system is pwned. With the Easy container, its much more difficult to get from the initial breach to becoming (real) root - your system is much less likely to become pwned.

Many don't care. Perhaps considering that they've nothing of importance on their system or whatever. However even apparently trivial local data might provide a more complete picture for someone that wishes to steal your identity (which can lead to decades of court cases where you attempt to fend off claims that purchases or borrowings were not made by you); Or if your system becomes part of a bot net that might be used to attack systems; Or download illegal content such that the police knock your door as being the primary suspect. Some of those those that end up in such positions do subsequently deeply regret that they previously didn't care, as such a position can be significantly life changing.
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
alibadrelsayed
Posts: 18
Joined: Tue 29 Jan 2019, 09:01

Huawei E173z-1 can not be detected

#1312 Post by alibadrelsayed »

To Barry:, thank you for your quick response, I type dmesg in terminal and this what I found :

# dmesg
[ 0.000000] Linux version 4.14.91 (root@MIDITOWER) (gcc version 6.3.0 (GCC)) #1 SMP Tue Jan 1 19:31:34 AWST 2019
[ 0.000000] Command line: rw
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000b4daffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000baabefff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000baabf000-0x00000000baebefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013f5fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: TOSHIBA SATELLITE C50-A/Portable PC, BIOS 1.40 04/28/2014
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x13f600 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-E7FFF write-protect
[ 0.000000] E8000-EFFFF write-combining
[ 0.000000] F0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 base 080000000 mask FC0000000 write-back
[ 0.000000] 2 base 0BB000000 mask FFF000000 uncachable
[ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0FF800000 mask FFF800000 write-protect
[ 0.000000] 5 base 100000000 mask FC0000000 write-back
[ 0.000000] 6 base 13F600000 mask FFFE00000 uncachable
[ 0.000000] 7 base 13F800000 mask FFF800000 uncachable
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fe1b0-0x000fe1bf] mapped at [ffffffffff2001b0]
[ 0.000000] Base memory trampoline at [ffff888000097000] 97000 size 24576
[ 0.000000] BRK [0x021cb000, 0x021cbfff] PGTABLE
[ 0.000000] BRK [0x021cc000, 0x021ccfff] PGTABLE
[ 0.000000] BRK [0x021cd000, 0x021cdfff] PGTABLE
[ 0.000000] BRK [0x021ce000, 0x021cefff] PGTABLE
[ 0.000000] BRK [0x021cf000, 0x021cffff] PGTABLE
[ 0.000000] BRK [0x021d0000, 0x021d0fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x1fb17000-0x1ffeffff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 TOSINV)
[ 0.000000] ACPI: XSDT 0x00000000BAFFE210 0000BC (v01 TOSINV TOSINV00 00000001 01000013)
[ 0.000000] ACPI: FACP 0x00000000BAFFB000 00010C (v05 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: DSDT 0x00000000BAFEF000 0084AB (v01 TOSINV TOSINV00 00000000 ACPI 00040000)
[ 0.000000] ACPI: FACS 0x00000000BAFBB000 000040
[ 0.000000] ACPI: UEFI 0x00000000BAFFD000 000236 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: ASF! 0x00000000BAFFC000 0000A5 (v32 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: HPET 0x00000000BAFFA000 000038 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: APIC 0x00000000BAFF9000 00008C (v03 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: MCFG 0x00000000BAFF8000 00003C (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: SLIC 0x00000000BAFEE000 000176 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: WDAT 0x00000000BAFED000 000224 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000BAFEB000 001068 (v01 INSYDE CR CRB 00001000 ACPI 00040000)
[ 0.000000] ACPI: BOOT 0x00000000BAFE9000 000028 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000BAFE8000 000C0A (v01 INSYDE CR CRB 00001000 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000BAFE7000 000696 (v01 INSYDE CR CRB 00001000 ACPI 00040000)
[ 0.000000] ACPI: ASPT 0x00000000BAFE5000 000034 (v07 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: DBGP 0x00000000BAFE4000 000034 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000BAFDC000 0072B0 (v01 TOSINV TsbOdm 00001000 ACPI 00040000)
[ 0.000000] ACPI: FPDT 0x00000000BAFDA000 000044 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000BAFD8000 000860 (v01 INSYDE CR CRB 00003000 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000BAFD7000 000B22 (v01 INSYDE CR CRB 00003000 ACPI 00040000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000013f5fffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001fffffff]
[ 0.000000] node 0: [mem 0x0000000020200000-0x0000000040003fff]
[ 0.000000] node 0: [mem 0x0000000040005000-0x00000000b4daffff]
[ 0.000000] node 0: [mem 0x00000000b61b0000-0x00000000baabefff]
[ 0.000000] node 0: [mem 0x00000000bafff000-0x00000000baffffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000013f5fffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013f5fffff]
[ 0.000000] On node 0 totalpages: 1018459
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 11795 pages used for memmap
[ 0.000000] DMA32 zone: 754879 pages, LIFO batch:31
[ 0.000000] Normal zone: 4056 pages used for memmap
[ 0.000000] Normal zone: 259584 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics memory at 0x00000000bba00000-0x00000000bf9fffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 6 hotplug CPUs
[ 0.000000] e820: [mem 0xbfa00000-0xdfffffff] available for PCI devices
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] percpu: Embedded 42 pages/cpu @ffff88813f200000 s132184 r8192 d31656 u262144
[ 0.000000] pcpu-alloc: s132184 r8192 d31656 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1002523
[ 0.000000] Kernel command line: rw
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.000000] Memory: 3911456K/4073836K available (8204K kernel code, 653K rwdata, 2300K rodata, 940K init, 324K bss, 162380K reserved, 0K cma-reserved)
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.003333] tsc: Detected 1795.830 MHz processor
[ 0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 3593.31 BogoMIPS (lpj=5986100)
[ 0.003333] pid_max: default: 32768 minimum: 301
[ 0.003333] ACPI: Core revision 20170728
[ 0.012516] ACPI: 7 ACPI AML tables successfully acquired and loaded
[ 0.012571] Security Framework initialized
[ 0.012573] AppArmor: AppArmor disabled by boot time parameter
[ 0.012608] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.012622] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.012829] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.012830] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.012834] mce: CPU supports 7 MCE banks
[ 0.012848] process: using mwait in idle threads
[ 0.012851] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.012852] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.012854] Spectre V2 : Spectre mitigation: kernel not compiled with retpoline; no mitigation available!
[ 0.012855] Speculative Store Bypass: Vulnerable
[ 0.013030] Freeing SMP alternatives memory: 36K
[ 0.013398] smpboot: Max logical packages: 4
[ 0.013832] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.047363] TSC deadline timer enabled
[ 0.047366] smpboot: CPU0: Intel(R) Celeron(R) CPU 1037U @ 1.80GHz (family: 0x6, model: 0x3a, stepping: 0x9)
[ 0.047439] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.047467] ... version: 3
[ 0.047468] ... bit width: 48
[ 0.047468] ... generic registers: 8
[ 0.047469] ... value mask: 0000ffffffffffff
[ 0.047470] ... max period: 00007fffffffffff
[ 0.047471] ... fixed-purpose events: 3
[ 0.047472] ... event mask: 00000007000000ff
[ 0.047514] Hierarchical SRCU implementation.
[ 0.047649] smp: Bringing up secondary CPUs ...
[ 0.047730] x86: Booting SMP configuration:
[ 0.047731] .... node #0, CPUs: #1
[ 0.049999] smp: Brought up 1 node, 2 CPUs
[ 0.049999] smpboot: Total of 2 processors activated (7186.62 BogoMIPS)
[ 0.050101] devtmpfs: initialized
[ 0.050144] random: get_random_u32 called from bucket_table_alloc+0x199/0x1d6 with crng_init=0
[ 0.050177] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[ 0.050177] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.050177] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 0.050177] pinctrl core: initialized pinctrl subsystem
[ 0.050319] NET: Registered protocol family 16
[ 0.050493] cpuidle: using governor ladder
[ 0.050493] cpuidle: using governor menu
[ 0.050493] Simple Boot Flag at 0x44 set to 0x1
[ 0.050493] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.050493] ACPI: bus type PCI registered
[ 0.050493] PCI: Using configuration type 1 for base access
[ 0.050493] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[ 0.051568] ACPI: Added _OSI(Module Device)
[ 0.051568] ACPI: Added _OSI(Processor Device)
[ 0.051568] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.051568] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.051568] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.061697] ACPI: Dynamic OEM Table Load:
[ 0.061708] ACPI: SSDT 0xFFFF88813A43E000 00080E (v01 PmRef Cpu0Cst 00003001 INTL 20120215)
[ 0.062074] ACPI: Dynamic OEM Table Load:
[ 0.062082] ACPI: SSDT 0xFFFF88813A6A7000 000303 (v01 PmRef ApIst 00003000 INTL 20120215)
[ 0.062352] ACPI: Dynamic OEM Table Load:
[ 0.062358] ACPI: SSDT 0xFFFF88813A674000 000119 (v01 PmRef ApCst 00003000 INTL 20120215)
[ 0.062994] ACPI: Interpreter enabled
[ 0.063014] ACPI: (supports S0 S3 S5)
[ 0.063015] ACPI: Using IOAPIC for interrupt routing
[ 0.063045] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.063333] ACPI: Enabled 9 GPEs in block 00 to 3F
[ 0.066629] acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
[ 0.070258] ACPI: Power Resource [FN00] (on)
[ 0.070934] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.070939] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 0.071018] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.071338] PCI host bridge to bus 0000:00
[ 0.071340] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.071342] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.071344] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.071346] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff window]
[ 0.071348] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.071357] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[ 0.071462] pci 0000:00:02.0: [8086:0156] type 00 class 0x030000
[ 0.071475] pci 0000:00:02.0: reg 0x10: [mem 0xc8000000-0xc83fffff 64bit]
[ 0.071481] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xc7ffffff 64bit pref]
[ 0.071486] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.071626] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[ 0.071654] pci 0000:00:16.0: reg 0x10: [mem 0xc8604000-0xc860400f 64bit]
[ 0.071735] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.071831] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[ 0.071855] pci 0000:00:1a.0: reg 0x10: [mem 0xc8608000-0xc86083ff]
[ 0.071945] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.072034] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[ 0.072054] pci 0000:00:1b.0: reg 0x10: [mem 0xc8600000-0xc8603fff 64bit]
[ 0.072130] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.072218] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[ 0.072304] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.072395] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[ 0.072477] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.072573] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[ 0.072597] pci 0000:00:1d.0: reg 0x10: [mem 0xc8607000-0xc86073ff]
[ 0.072688] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.072775] pci 0000:00:1f.0: [8086:1e5f] type 00 class 0x060100
[ 0.072966] pci 0000:00:1f.2: [8086:1e01] type 00 class 0x01018f
[ 0.072986] pci 0000:00:1f.2: reg 0x10: [io 0x30b8-0x30bf]
[ 0.072994] pci 0000:00:1f.2: reg 0x14: [io 0x30cc-0x30cf]
[ 0.073003] pci 0000:00:1f.2: reg 0x18: [io 0x30b0-0x30b7]
[ 0.073012] pci 0000:00:1f.2: reg 0x1c: [io 0x30c8-0x30cb]
[ 0.073020] pci 0000:00:1f.2: reg 0x20: [io 0x3090-0x309f]
[ 0.073028] pci 0000:00:1f.2: reg 0x24: [io 0x3080-0x308f]
[ 0.073138] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[ 0.073159] pci 0000:00:1f.3: reg 0x10: [mem 0xc8605000-0xc86050ff 64bit]
[ 0.073182] pci 0000:00:1f.3: reg 0x20: [io 0x3040-0x305f]
[ 0.073282] pci 0000:00:1f.5: [8086:1e09] type 00 class 0x010185
[ 0.073300] pci 0000:00:1f.5: reg 0x10: [io 0x30a8-0x30af]
[ 0.073309] pci 0000:00:1f.5: reg 0x14: [io 0x30c4-0x30c7]
[ 0.073317] pci 0000:00:1f.5: reg 0x18: [io 0x30a0-0x30a7]
[ 0.073326] pci 0000:00:1f.5: reg 0x1c: [io 0x30c0-0x30c3]
[ 0.073333] pci 0000:00:1f.5: reg 0x20: [io 0x3070-0x307f]
[ 0.073344] pci 0000:00:1f.5: reg 0x24: [io 0x3060-0x306f]
[ 0.073516] pci 0000:01:00.0: [1969:1090] type 00 class 0x020000
[ 0.073552] pci 0000:01:00.0: reg 0x10: [mem 0xc8500000-0xc853ffff 64bit]
[ 0.073567] pci 0000:01:00.0: reg 0x18: [io 0x2000-0x207f]
[ 0.073707] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.083376] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.083381] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.083385] pci 0000:00:1c.0: bridge window [mem 0xc8500000-0xc85fffff]
[ 0.083456] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
[ 0.083490] pci 0000:02:00.0: reg 0x10: [mem 0xc8400000-0xc847ffff 64bit]
[ 0.083556] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.083630] pci 0000:02:00.0: supports D1 D2
[ 0.083631] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.093369] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.093375] pci 0000:00:1c.1: bridge window [mem 0xc8400000-0xc84fffff]
[ 0.093395] pci_bus 0000:00: on NUMA node 0
[ 0.093980] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[ 0.094041] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.094098] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.094155] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.094211] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.094268] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[ 0.094324] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.094379] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.094628] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.094628] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.094628] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.094628] vgaarb: loaded
[ 0.094628] SCSI subsystem initialized
[ 0.094628] libata version 3.00 loaded.
[ 0.094628] ACPI: bus type USB registered
[ 0.094628] usbcore: registered new interface driver usbfs
[ 0.094628] usbcore: registered new interface driver hub
[ 0.094628] usbcore: registered new device driver usb
[ 0.094628] PCI: Using ACPI for IRQ routing
[ 0.094628] PCI: pci_cache_line_size set to 64 bytes
[ 0.094628] e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
[ 0.094628] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[ 0.094628] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[ 0.094628] e820: reserve RAM buffer [mem 0xbaabf000-0xbbffffff]
[ 0.094628] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[ 0.094628] e820: reserve RAM buffer [mem 0x13f600000-0x13fffffff]
[ 0.094628] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.094628] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.096685] clocksource: Switched to clocksource hpet
[ 0.096766] pnp: PnP ACPI init
[ 0.096898] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.096901] system 00:00: [io 0x1000-0x100f] has been reserved
[ 0.096903] system 00:00: [io 0xffff] has been reserved
[ 0.096905] system 00:00: [io 0xffff] has been reserved
[ 0.096907] system 00:00: [io 0x0400-0x0453] has been reserved
[ 0.096908] system 00:00: [io 0x0458-0x047f] has been reserved
[ 0.096910] system 00:00: [io 0x0500-0x057f] has been reserved
[ 0.096912] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.096918] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.096943] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.096987] system 00:02: [io 0x0454-0x0457] has been reserved
[ 0.096991] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.097013] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.097036] pnp 00:04: Plug and Play ACPI device, IDs TOS0320 SYN1900 SYN0002 PNP0f13 (active)
[ 0.097241] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.097243] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.097245] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.097247] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.097249] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.097251] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.097253] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.097255] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.097257] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.097259] system 00:05: [mem 0xbfa00000-0xbfa00fff] has been reserved
[ 0.097261] system 00:05: [mem 0xff700000-0xff7001ff] has been reserved
[ 0.097265] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.097558] system 00:06: [mem 0x20000000-0x201fffff] has been reserved
[ 0.097560] system 00:06: [mem 0x40004000-0x40004fff] has been reserved
[ 0.097564] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.097622] pnp: PnP ACPI: found 7 devices
[ 0.103848] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.103853] pci 0000:02:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.103876] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.103880] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.103886] pci 0000:00:1c.0: bridge window [mem 0xc8500000-0xc85fffff]
[ 0.103898] pci 0000:02:00.0: BAR 6: assigned [mem 0xc8480000-0xc848ffff pref]
[ 0.103900] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.103905] pci 0000:00:1c.1: bridge window [mem 0xc8400000-0xc84fffff]
[ 0.103915] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.103917] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.103919] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.103921] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff window]
[ 0.103922] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.103924] pci_bus 0000:01: resource 1 [mem 0xc8500000-0xc85fffff]
[ 0.103926] pci_bus 0000:02: resource 1 [mem 0xc8400000-0xc84fffff]
[ 0.104043] NET: Registered protocol family 2
[ 0.104224] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.104284] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.104373] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.104405] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.104418] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.104477] NET: Registered protocol family 1
[ 0.104493] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.136804] pci 0000:01:00.0: set MSI_INTX_DISABLE_BUG flag
[ 0.136812] PCI: CLS 64 bytes, default 64
[ 0.136860] Trying to unpack rootfs image as initramfs...
[ 0.143650] Freeing initrd memory: 4964K
[ 0.143700] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.143702] software IO TLB: mapped [mem 0xb6abf000-0xbaabf000] (64MB)
[ 0.143776] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[ 0.143777] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[ 0.143778] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 0.143779] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[ 0.144119] audit: initializing netlink subsys (disabled)
[ 0.144175] audit: type=2000 audit(1548948811.143:1): state=initialized audit_enabled=0 res=1
[ 0.144360] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 0.144616] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.144629] ntfs: driver 2.1.32 [Flags: R/W].
[ 0.144653] fuse init (API version 7.26)
[ 0.144790] aufs 4.14-20180312
[ 0.145905] NET: Registered protocol family 38
[ 0.145920] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 0.145922] io scheduler noop registered
[ 0.145923] io scheduler deadline registered
[ 0.145935] io scheduler cfq registered (default)
[ 0.146367] intel_idle: MWAIT substates: 0x21120
[ 0.146369] intel_idle: v0.4.1 model 0x3A
[ 0.146455] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.158070] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.158651] Non-volatile memory driver v1.3
[ 0.160434] brd: module loaded
[ 0.161218] loop: module loaded
[ 0.161304] zram: Added device: zram0
[ 0.161330] usbcore: registered new interface driver rtsx_usb
[ 0.161563] ata_piix 0000:00:1f.2: version 2.13
[ 0.161701] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 0.317031] scsi host0: ata_piix
[ 0.317199] scsi host1: ata_piix
[ 0.317247] ata1: SATA max UDMA/133 cmd 0x30b8 ctl 0x30cc bmdma 0x3090 irq 19
[ 0.317252] ata2: SATA max UDMA/133 cmd 0x30b0 ctl 0x30c8 bmdma 0x3098 irq 19
[ 0.317386] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[ 0.473422] ata_piix 0000:00:1f.5: SCR access via SIDPR is available but doesn't work
[ 0.473724] scsi host2: ata_piix
[ 0.473853] scsi host3: ata_piix
[ 0.473893] ata3: SATA max UDMA/133 cmd 0x30a8 ctl 0x30c4 bmdma 0x3070 irq 21
[ 0.473895] ata4: SATA max UDMA/133 cmd 0x30a0 ctl 0x30c0 bmdma 0x3078 irq 21
[ 0.474713] scsi host4: pata_legacy
[ 0.474748] ata5: PATA max PIO4 cmd 0x1f0 ctl 0x3f6 irq 14
[ 0.641994] ata4.00: ATAPI: TSSTcorp CDDVDW SU-208DB, TF01, max UDMA/100
[ 0.646690] ata4.00: configured for UDMA/100
[ 1.170089] tsc: Refined TSC clocksource calibration: 1795.922 MHz
[ 1.170105] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x19e31d3ed03, max_idle_ns: 440795240336 ns
[ 1.350091] ata2.00: failed to resume link (SControl 0)
[ 1.663423] ata1.01: failed to resume link (SControl 30)
[ 1.820154] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 330)
[ 1.820168] ata1.01: SATA link down (SStatus 4 SControl 30)
[ 1.840614] ata1.00: ATA-8: HGST HTS545050A7E380, GG2OAC90, max UDMA/133
[ 1.840617] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 1.845665] ata1.00: configured for UDMA/133
[ 1.845824] scsi 0:0:0:0: Direct-Access ATA HGST HTS545050A7 AC90 PQ: 0 ANSI: 5
[ 1.846130] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 1.846132] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 1.846147] sd 0:0:0:0: [sda] Write Protect is off
[ 1.846149] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.846171] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.903846] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[ 1.904830] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.183503] clocksource: Switched to clocksource tsc
[ 2.383423] ata2.01: failed to resume link (SControl 0)
[ 2.395109] ata2.00: SATA link down (SStatus 0 SControl 0)
[ 2.395124] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 2.396308] scsi 3:0:0:0: CD-ROM TSSTcorp CDDVDW SU-208DB TF01 PQ: 0 ANSI: 5
[ 2.464172] sr 3:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.464175] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.464411] sr 3:0:0:0: Attached scsi CD-ROM sr0
[ 2.480525] scsi host4: pata_legacy
[ 2.480576] ata6: PATA max PIO4 cmd 0x170 ctl 0x376 irq 15
[ 2.653544] libphy: Fixed MDIO Bus: probed
[ 2.653547] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.653548] ehci-pci: EHCI PCI platform driver
[ 2.653725] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 2.653734] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 2.653751] ehci-pci 0000:00:1a.0: debug port 2
[ 2.657641] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 2.657656] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc8608000
[ 2.670072] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 2.670129] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 2.670131] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.670133] usb usb1: Product: EHCI Host Controller
[ 2.670134] usb usb1: Manufacturer: Linux 4.14.91 ehci_hcd
[ 2.670135] usb usb1: SerialNumber: 0000:00:1a.0
[ 2.670385] hub 1-0:1.0: USB hub found
[ 2.670394] hub 1-0:1.0: 2 ports detected
[ 2.670682] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 2.670689] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 2.670705] ehci-pci 0000:00:1d.0: debug port 2
[ 2.674611] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 2.674625] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc8607000
[ 2.686739] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 2.686796] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 2.686799] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.686800] usb usb2: Product: EHCI Host Controller
[ 2.686802] usb usb2: Manufacturer: Linux 4.14.91 ehci_hcd
[ 2.686803] usb usb2: SerialNumber: 0000:00:1d.0
[ 2.687030] hub 2-0:1.0: USB hub found
[ 2.687041] hub 2-0:1.0: 2 ports detected
[ 2.687202] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.687209] ohci-pci: OHCI PCI platform driver
[ 2.687227] ohci-platform: OHCI generic platform driver
[ 2.687236] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.687293] fotg210_hcd: FOTG210 Host Controller (EHCI) Driver
[ 2.687294] Warning! fotg210_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
[ 2.687331] usbcore: registered new interface driver usb-storage
[ 2.687340] usbcore: registered new interface driver ums-alauda
[ 2.687349] usbcore: registered new interface driver ums-datafab
[ 2.687358] usbcore: registered new interface driver ums_eneub6250
[ 2.687366] usbcore: registered new interface driver ums-freecom
[ 2.687376] usbcore: registered new interface driver ums-isd200
[ 2.687384] usbcore: registered new interface driver ums-jumpshot
[ 2.687395] usbcore: registered new interface driver ums-realtek
[ 2.687402] usbcore: registered new interface driver ums-sddr09
[ 2.687410] usbcore: registered new interface driver ums-sddr55
[ 2.687418] usbcore: registered new interface driver ums-usbat
[ 2.687427] usbcore: registered new interface driver ldusb
[ 2.687475] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
[ 2.690294] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 2.690299] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 2.690567] mousedev: PS/2 mouse device common for all mice
[ 2.690693] rtc_cmos 00:01: RTC can wake from S4
[ 2.690873] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[ 2.690904] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[ 2.690923] sdhci: Secure Digital Host Controller Interface driver
[ 2.690924] sdhci: Copyright(c) Pierre Ossman
[ 2.690951] wbsd: Winbond W83L51xD SD/MMC card interface driver
[ 2.690951] wbsd: Copyright(c) Pierre Ossman
[ 2.690982] VUB300 Driver rom wait states = 1C irqpoll timeout = 0400
[ 2.691129] usbcore: registered new interface driver vub300
[ 2.691141] usbcore: registered new interface driver ushc
[ 2.691166] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.691308] usbcore: registered new interface driver usbhid
[ 2.691308] usbhid: USB HID core driver
[ 2.691344] Netfilter messages via NETLINK v0.30.
[ 2.691440] NET: Registered protocol family 10
[ 2.691637] Segment Routing with IPv6
[ 2.691657] NET: Registered protocol family 17
[ 2.691667] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 2.691668] 8021q: 802.1Q VLAN Support v1.8
[ 2.691676] Key type dns_resolver registered
[ 2.691831] sched_clock: Marking stable (2691792360, 0)->(2700382170, -8589810)
[ 2.692172] Key type encrypted registered
[ 2.693135] Freeing unused kernel memory: 940K
[ 2.706728] Write protecting the kernel read-only data: 14336k
[ 2.707337] Freeing unused kernel memory: 2008K
[ 2.712465] Freeing unused kernel memory: 1796K
[ 2.712474] rodata_test: all tests were successful
[ 2.712889] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 3.000078] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 3.016743] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 3.147148] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[ 3.147152] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.147516] hub 1-1:1.0: USB hub found
[ 3.147578] hub 1-1:1.0: 4 ports detected
[ 3.163777] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[ 3.163780] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.164130] hub 2-1:1.0: USB hub found
[ 3.164251] hub 2-1:1.0: 4 ports detected
[ 3.368972] psmouse serio1: synaptics: queried max coordinates: x [..5692], y [..4680]
[ 3.395532] random: fast init done
[ 3.422352] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000/0x0, board id: 0, fw id: 582762
[ 3.456240] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
[ 3.893549] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[ 7.515791] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[ 8.770077] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[ 8.868288] usb 2-1.3: New USB device found, idVendor=12d1, idProduct=14fe
[ 8.868291] usb 2-1.3: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 8.868292] usb 2-1.3: Product: HUAWEI Mobile
[ 8.868294] usb 2-1.3: Manufacturer: HUAWEI
[ 8.869886] usb-storage 2-1.3:1.0: USB Mass Storage device detected
[ 8.869987] usb-storage: device found at 3
[ 8.870047] scsi host4: usb-storage 2-1.3:1.0
[ 8.870099] usb-storage: waiting for device to settle before scanning
[ 8.870170] usb-storage 2-1.3:1.1: USB Mass Storage device detected
[ 8.870250] usb-storage: device found at 3
[ 8.870273] scsi host5: usb-storage 2-1.3:1.1
[ 8.870316] usb-storage: waiting for device to settle before scanning
[ 9.890909] scsi 5:0:0:0: Direct-Access HUAWEI SD Storage 2.31 PQ: 0 ANSI: 2
[ 9.891079] scsi 4:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2
[ 9.892109] usb-storage: device scan complete
[ 9.892622] sr 4:0:0:0: [sr1] scsi-1 drive
[ 9.892822] sr 4:0:0:0: Attached scsi CD-ROM sr1
[ 9.893138] sd 5:0:0:0: [sdb] Attached SCSI removable disk
[ 9.893857] usb-storage: device scan complete
[ 15.077810] random: crng init done
[ 25.013414] floppy0: no floppy controllers found
[ 25.013427] work still pending
[ 25.078203] udevd[4711]: starting version 3.2.1
[ 25.167766] udevd[4805]: starting eudev-3.2.1
[ 26.323412] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 26.323416] ACPI: Battery Slot [BAT0] (battery present)
[ 26.327827] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 26.327863] ACPI: AC Adapter [ADP0] (on-line)
[ 26.333934] thermal LNXTHERM:00: registered as thermal_zone0
[ 26.333937] ACPI: Thermal Zone [THRM] (57 C)
[ 29.373010] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[ 29.373064] ACPI: Power Button [PWRB]
[ 29.373404] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
[ 29.373703] ACPI: Lid Switch [LID0]
[ 29.373756] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[ 29.373795] ACPI: Power Button [PWRF]
[ 29.629116] toshiba_bluetooth: Toshiba ACPI Bluetooth device driver
[ 30.203345] usb 1-1.2: new full-speed USB device number 3 using ehci-pci
[ 30.301164] usb 1-1.2: New USB device found, idVendor=0930, idProduct=0220
[ 30.301167] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 30.515480] Linux agpgart interface v0.103
[ 30.654419] [drm] Memory usable by graphics device = 2048M
[ 30.654421] [drm] Replacing VGA console driver
[ 30.655403] Console: switching to colour dummy device 80x25
[ 30.660066] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 30.660068] [drm] Driver supports precise vblank timestamp query.
[ 30.662425] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 30.703290] [drm] Initialized i915 1.6.0 20170818 for 0000:00:02.0 on minor 0
[ 30.704098] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 30.705065] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input6
[ 30.739306] fbcon: inteldrmfb (fb0) is primary device
[ 31.396698] Console: switching to colour frame buffer device 170x48
[ 31.416563] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 31.418995] udevd[5423]: '/bin/sh -c 'echo add_0000:00:02.0_pci_0x8086_0x0156_pci:v00008086d00000156sv00001179sd0000FA20bc03sc00i00 >> /tmp/udevtrace.log'' [8662] terminated by signal 1 (Hangup)
[ 31.465383] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops vgt_balloon_space [i915])
[ 31.502881] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 31.502884] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 31.502886] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 31.502888] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 31.502889] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 31.502892] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 31.502893] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 31.503832] alx 0000:01:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [00:8c:fa:7c:fd:59]
[ 31.536446] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 31.536854] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 31.536908] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 31.536960] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 31.657877] ath: phy0: WB335 2-ANT card detected
[ 31.657880] ath: phy0: Set BT/WLAN RX diversity capability
[ 31.665949] ath: phy0: Enable LNA combining
[ 31.667165] ath: phy0: ASPM enabled: 0x42
[ 31.667166] ath: EEPROM regdomain: 0x65
[ 31.667167] ath: EEPROM indicates we should expect a direct regpair map
[ 31.667169] ath: Country alpha2 being used: 00
[ 31.667170] ath: Regpair used: 0x65
[ 31.667792] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 31.668195] ieee80211 phy0: Atheros AR9565 Rev:0 mem=0xffffc90000580000, irq=17
[ 32.116716] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20170728/utaddress-247)
[ 32.116723] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 32.116726] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170728/utaddress-247)
[ 32.116731] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 32.116732] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170728/utaddress-247)
[ 32.116736] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 32.116736] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170728/utaddress-247)
[ 32.116741] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x000000000000050D-0x000000000000050D (\_SB.PCI0.LPCB.GPTS) (20170728/utaddress-247)
[ 32.116745] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 32.116745] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 32.638850] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 33.289001] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 34.086549] input: PC Speaker as /devices/platform/pcspkr/input/input11
[ 34.395054] Bluetooth: Core ver 2.22
[ 34.395070] NET: Registered protocol family 31
[ 34.395071] Bluetooth: HCI device and connection manager initialized
[ 34.395074] Bluetooth: HCI socket layer initialized
[ 34.395077] Bluetooth: L2CAP socket layer initialized
[ 34.395085] Bluetooth: SCO socket layer initialized
[ 34.444663] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 34.444665] Bluetooth: BNEP filters: protocol multicast
[ 34.444669] Bluetooth: BNEP socket layer initialized
[ 40.303628] udevd[11869]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 0930 0220': No such file or directory
[ 40.327395] usbcore: registered new interface driver btusb
[ 40.329904] usb 1-1.2: Direct firmware load for ar3k/ramps_0x31010000_40.dfu failed with error -2
[ 40.329908] Bluetooth: Configuration file not found ar3k/ramps_0x31010000_40.dfu
[ 40.329908] Bluetooth: Loading sysconfig file failed
[ 40.329915] ath3k: probe of 1-1.2:1.0 failed with error -2
[ 40.330454] usbcore: registered new interface driver ath3k
[ 40.597404] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 40.870314] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 40.883082] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 40.904389] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 40.957328] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 56.368134] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 62.213879] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 142.158376] udevd[13052]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 1d6b 0002': No such file or directory
[ 142.175740] udevd[13061]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 8087 0024': No such file or directory
[ 142.194312] udevd[13071]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 0930 0220': No such file or directory
[ 142.220772] udevd[13081]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 1d6b 0002': No such file or directory
[ 142.239486] udevd[13090]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 8087 0024': No such file or directory
[ 142.258050] udevd[13100]: failed to execute '/usr/sbin/obex-check-device' '/usr/sbin/obex-check-device 12d1 14fe': No such file or directory
#

lp-dolittle
Posts: 156
Joined: Mon 25 Apr 2016, 17:35

#1313 Post by lp-dolittle »

@ rufwoof

thank you so much for your very helpful and detailed explanation. I still have to ponder on the question of whether using the main desktop, after flipping back from the restricted container desktop via ALT-F6, involves a security risk until the restricted container desktop is killed or closed. I'm also not really sure about these two options' differing effect, in that particular situation)

kind regards, and again many thanks

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1314 Post by rufwoof »

Looks like the usb is being detected ok

Code: Select all

[ 8.770077] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[ 8.868288] usb 2-1.3: New USB device found, idVendor=12d1, idProduct=14fe
[ 8.868291] usb 2-1.3: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 8.868292] usb 2-1.3: Product: HUAWEI Mobile
[ 8.868294] usb 2-1.3: Manufacturer: HUAWEI
[ 8.869886] usb-storage 2-1.3:1.0: USB Mass Storage device detected
[ 8.869987] usb-storage: device found at 3 
.. so looks like its not a driver issue after all. Perhaps a bad burn of the usb image, or even a partially faulty usb ??

The obex errors towards the end ... are you trying to run openbox instead of jwm as the window manager?
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1315 Post by rufwoof »

lp-dolittle wrote:I still have to ponder on the question of whether using the main desktop, after flipping back from the restricted container desktop via ALT-F6, involves a security risk until the restricted container desktop is killed or closed
Xephyr and pflask seem good enough that you could run windows in the main desktop while the Easy container is running. But to be more certain it would be good practice to avoid doing so.

I only use the main desktop for admin tasks, running those whilst the Easy container isn't running. With all main desktop windows closed I'll then start the Easy container and use that for general use (browsing, office, music etc.). Periodically however I will alt-f6 back to the main session and use perhaps rox to copy files between the two 'desktops' (main session and Easy container) but avoid leaving a main desktop window open any longer than necessary to do that and mindful that it 'could' be a security risk (so tend to have the Easy container browser on my home page and with its cache having been cleared (I tend to ctrl-shift-delete regularly i.e. after exiting from a online logged in session and before logging into another). Alternatively, and the method I personally more prefer, is ctrl-alt-F2 and login as root and use mc to transfer files i.e. from the command line, and use that to copy files - but many dislike/prefer-to-avoid cli.

More generally I suspect you could leave root windows running in the main session whilst the Easy container is running and be secure. I haven't found a way to break out of the Xephyr Easy container and access main session windows, so my practice is more of belt and braces rather than being considered as advisable.

For the www and console containers however I have been able to break out of the contained www/console to the main root windows, so I'd say inadvisable to have root windows running on the main desktop when either the www or console containers were running. Personally I don't use them myself at all. The Xephyr Easy container meets all my needs.

Security is a tradeoff. A pc that is never turned on and is locked in a vault still isn't 100% secure. Generally as ease of use/functionality increases so security tends to decrease. Really the best you can do is to raise the security bar high enough such that you're less of a easy/attractive target than others without excessively compromising functionality. Easy does that (very) well. As ever however security is fundamentally a practice, not a product.
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

lp-dolittle
Posts: 156
Joined: Mon 25 Apr 2016, 17:35

desktop container

#1316 Post by lp-dolittle »

@ rufwoof

again, many thanks, rufwoof, for paying so much attention to my questions!!

kind regards

lp-dolittle

User avatar
alibadrelsayed
Posts: 18
Joined: Tue 29 Jan 2019, 09:01

Huawei E173z-1 can not be detected

#1317 Post by alibadrelsayed »

rufwwof, thank you alot for your efforts, my image burned correctly I'm pretty sure of that with hecksum and other tools, the same mdsl modem detected correctly without any problems in xenialpup 7.5, I think its somthing wrong in usb-modeswitch 2.5.2 because in xenialpup 7.5 usb-modeswitch 2.2.0 the modem been dtected without any prolem, and I'm not trying to run openbox wm as far as I know, I'm not sure.

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

#1318 Post by rufwoof »

Opening a console in the Easy container and running

Code: Select all

killall ROX-Filer
closes the easy container

Currently I'm trialing just having either the main or Easy container running at any one time. Boot to cli (qfix=nox boot parameter) and run xwin to start the normal session. Use the exit to commandline menu option to end that session.

For the easy container, from ctrl-alt-F1 (cli) run

Code: Select all

X  :1 vt04 &
and note the PID ($! return code)
Then run

Code: Select all

DISPLAY=:1 empty -f ec-chroot easy
... to start the easy container (also runs on ctrl-alt-F4 - the same as when the main session is run).

When done, in the easy container run killall ROX-Filer and back at ctrl-alt-F1 kill the X PID noted earlier (i.e. kill -9 12345 ... assuming 12345 PID).

During a easy container session you can ctrl-alt-F1 to the cli (real/full root) and copy files across or whatever (I like to install mc from petget and use that as a file manager and mc -e text editor).

More cumbersome to run things that way, but not having both the main X and container X running at the same time provides greater separation.

Personally I mostly just use the easy container anyway. Only using the main X for admin purposes, which once things are set up tends to be relatively infrequent. For mounting and other common admin tasks, they can be performed from cli (I also like to install tmux and use a tput based menu for those sorts of things).

My intent is to standardise both to being similar, xwin for main session, ecwin for the easy container, along with adding a exit choice to the containers menu so that I don't have to manually run the kill ROX-Filer, kill X, flip to ctrl-alt-F1 tasks manually.

The system definitely seems quicker when just running one X compared to two, temperature wise however seems much the same. 40 degrees (40000 millidegrees) on mine for the easy container when loaded with glxgears, audacious showing Spectrum Analysis and a full screen youtube (one of sneekylinux's) running in Firefox Quantum.
Attachments
s.jpg
(33.01 KiB) Downloaded 444 times
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
rufwoof
Posts: 3690
Joined: Mon 24 Feb 2014, 17:47

background changes set_bg

#1319 Post by rufwoof »

/usr/sbin/set_bg inside the Easy container needs to also copy the new background image to /usr/share/backgrounds/default.jpg

I just added

Code: Select all

cp $1 /usr/share/backgrounds/default.jpg
at the end of set_bg

After the easy container is shutdown, whilst it has the new background image set in the Rox pinboard, the next time its started that to rox pinboard's background image pointer reverts to pointing to /usr/share/backgrounds/default.jpg, so prior changed backgrounds are lost - unless that default.jpg image is also updated. Changing set_bg as above rectifies that so if you change the background in the easy container the previously changed background persists.
[size=75]( ͡° ͜ʖ ͡°) :wq[/size]
[url=http://murga-linux.com/puppy/viewtopic.php?p=1028256#1028256][size=75]Fatdog multi-session usb[/url][/size]
[size=75][url=https://hashbang.sh]echo url|sed -e 's/^/(c/' -e 's/$/ hashbang.sh)/'|sh[/url][/size]

User avatar
alibadrelsayed
Posts: 18
Joined: Tue 29 Jan 2019, 09:01

Huawei E173z-1 can not be detected

#1320 Post by alibadrelsayed »

To rufwoof: thank you very much for your help, I'm gonna check firmware modules in the boot manager and see if the problem still there.

Post Reply