Dpup Stretch 7.5 CE (RC-5)

A home for all kinds of Puppy related projects
Post Reply
Message
Author
radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#81 Post by radky »

Terry H wrote:
radky wrote:Hi Terry,

Thanks for testing Beta-2. :)

Typically, for kernels >=3.7, the single temperature readout defaults to the last (tail) of the sampled CPU temperatures. In your case, the last readout may be spurious and it may be better to parse the first (head) temperature. So, we can try the following: go to line #189 of /usr/bin/fbpanel-sysinfobar and change tail to head.
Thanks for the response. Changed from tail to head as above, CPU Temp still displayed as 25 C, so didn't have desired effect. I also changed the corresponding statement in /usr/bin/fbpanel-sysinfo, also still incorrectly displaying 25C.
Hi Terry,

In a terminal, please run the following five commands separately. What is the output for each?

Code: Select all

cat /sys/class/thermal/thermal_zone0/temp

awk 'NR==1 {print $2}' /proc/acpi/thermal_zone/*/temperature

find /sys/devices/ -name temp1_input

find /sys/devices/ -name temp*_input

find /sys/bus/acpi/devices/ -name temp
Thanks
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#82 Post by radky »

Terry H wrote:Attempted to run FlSynclient to adjust the Laptop Touchpad (ALPS). An error came up in a message box:

Code: Select all

Couldn't find synaptics properties. No synaptics driver loaded?
The FlSynclient package is include in Beta-2. The FlSynclient ran in Beta-2 with the 4.9.62 kernel. Any idea why this won't run now?
Hi Terry,

Running k4.9.67 on my Acer Aspire 5742Z notebook (Intel(R) CPU P6100 @ 2.00GHz).

flSynclient launches and the synaptics driver loads as expected for me. No problem changing touchpad configuration options. Maybe other users could also test flSynclient.
Attachments
image-1.png
(32.64 KiB) Downloaded 448 times
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

User avatar
mavrothal
Posts: 3096
Joined: Mon 24 Aug 2009, 18:23

#83 Post by mavrothal »

The 8Dec2017 version runs pretty nicely. Well done!
You may want to consider proper versioning, so possible update issues could be also addressed.

One little bug I came across with FBpanel is that at times "File" opens other directories than $HOME
For instance if you change icon theme from puppy icon switcher then it opens /usr/local/lib/X11/pixmaps. After some other app was /var/run or something.
Looks like file path is not hardcoded in FBpanel and/or it gets overwritten.
Is OK with JWM.
== [url=http://www.catb.org/esr/faqs/smart-questions.html]Here is how to solve your[/url] [url=https://www.chiark.greenend.org.uk/~sgtatham/bugs.html]Linux problems fast[/url] ==

Terry H
Posts: 708
Joined: Sun 29 Mar 2009, 16:48
Location: The Heart of Muskoka, ON Canada

#84 Post by Terry H »

radky wrote:
Terry H wrote:
radky wrote:Hi Terry,

Thanks for testing Beta-2. :)

Typically, for kernels >=3.7, the single temperature readout defaults to the last (tail) of the sampled CPU temperatures. In your case, the last readout may be spurious and it may be better to parse the first (head) temperature. So, we can try the following: go to line #189 of /usr/bin/fbpanel-sysinfobar and change tail to head.
Thanks for the response. Changed from tail to head as above, CPU Temp still displayed as 25 C, so didn't have desired effect. I also changed the corresponding statement in /usr/bin/fbpanel-sysinfo, also still incorrectly displaying 25C.
Hi Terry,

In a terminal, please run the following five commands separately. What is the output for each?

Code: Select all

cat /sys/class/thermal/thermal_zone0/temp

awk 'NR==1 {print $2}' /proc/acpi/thermal_zone/*/temperature

find /sys/devices/ -name temp1_input

find /sys/devices/ -name temp*_input

find /sys/bus/acpi/devices/ -name temp
Thanks
Output as advised. I noticed 2 additional thermal_zones, so I included those as well.

Code: Select all

# cat /sys/class/thermal/thermal_zone0/temp
25000

# cat /sys/class/thermal/thermal_zone1/temp
27800

# cat /sys/class/thermal/thermal_zone2/temp
29800

# awk 'NR==1 {print $2}' /proc/acpi/thermal_zone/*/temperature
awk: fatal: cannot open file `/proc/acpi/thermal_zone/*/temperature' for reading (No such file or directory)

# find /sys/devices/ -name temp1_input
/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_input

# find /sys/devices/ -name temp*_input
/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_input
/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_input
/sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_input

# find /sys/bus/acpi/devices/ -name temp
# 

Terry H
Posts: 708
Joined: Sun 29 Mar 2009, 16:48
Location: The Heart of Muskoka, ON Canada

#85 Post by Terry H »

radky wrote: Hi Terry,

Running k4.9.67 on my Acer Aspire 5742Z notebook (Intel(R) CPU P6100 @ 2.00GHz).

flSynclient launches and the synaptics driver loads as expected for me. No problem changing touchpad configuration options. Maybe other users could also test flSynclient.
Thanks radky, strange, as it ran for me in Beta-1. Is there any way to load the driver?

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#86 Post by radky »

Code: Select all

cat /sys/class/thermal/thermal_zone0/temp

awk 'NR==1 {print $2}' /proc/acpi/thermal_zone/*/temperature

find /sys/devices/ -name temp1_input

find /sys/devices/ -name temp*_input

find /sys/bus/acpi/devices/ -name temp
Hi Terry,

The 'single temperature' monitor parses the five code lines above until it finds the first that returns true. For your laptop, I'm not sure which motherboard sensor is probed by line #1 but apparently it is responsible for the spurious 25 degree readout of the 'single temperature' monitor.

For your laptop, to sync the 'single temperature' monitor with the 'multi-core temperature' tooltip monitor, we could try the following:

Go to /usr/bin/fbpanel-sysinfobar and comment out (prepend with #) lines 162-167 and line 215.

If this helps, you could do the same for /usr/bin/fbpanel-sysinfo lines 13-18 and line 66.
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#87 Post by radky »

Terry H wrote:
radky wrote: Hi Terry,

Running k4.9.67 on my Acer Aspire 5742Z notebook (Intel(R) CPU P6100 @ 2.00GHz).

flSynclient launches and the synaptics driver loads as expected for me. No problem changing touchpad configuration options. Maybe other users could also test flSynclient.
Thanks radky, strange, as it ran for me in Beta-1. Is there any way to load the driver?
@Terry,

When booting, flsynclient loads via /root/.config/autostart/flsynclient.desktop

[Desktop Entry]
Encoding=UTF-8
Type=Application
NoDisplay=true
Name=flsynclient
Exec=flsynclient -s

You could check the following logs for information about the synaptics driver after rebooting.

# grep synaptics /var/log/Xorg.0.log
[ 198.765] (II) LoadModule: "synaptics"
[ 198.765] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 198.765] (II) Module synaptics: vendor="X.Org Foundation"
[ 198.769] (II) LoadModule: "synaptics"
[ 198.769] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 198.769] (II) Module synaptics: vendor="X.Org Foundation"
[ 199.063] (II) Using input driver 'synaptics' for 'Synaptics Mouse'
[ 199.099] (--) synaptics: Synaptics Mouse: auto-dev sets device to /dev/input/event6
[ 199.107] (II) synaptics: Synaptics Mouse: ignoring touch events for semi-multitouch device
[ 199.107] (--) synaptics: Synaptics Mouse: x-axis range 1472 - 5772 (res 69)
[ 199.107] (--) synaptics: Synaptics Mouse: y-axis range 1408 - 5086 (res 118)
[ 199.107] (--) synaptics: Synaptics Mouse: pressure range 0 - 255
[ 199.107] (--) synaptics: Synaptics Mouse: finger width range 0 - 15
[ 199.107] (--) synaptics: Synaptics Mouse: buttons: left right double triple
[ 199.107] (--) synaptics: Synaptics Mouse: Vendor 0x2 Product 0x7
[ 199.107] (--) synaptics: Synaptics Mouse: touchpad found
[ 199.115] (**) synaptics: Synaptics Mouse: (accel) MinSpeed is now constant deceleration 2.5
[ 199.115] (**) synaptics: Synaptics Mouse: (accel) MaxSpeed is now 1.75
[ 199.115] (**) synaptics: Synaptics Mouse: (accel) AccelFactor is now 0.035
[ 199.115] (--) synaptics: Synaptics Mouse: touchpad found

# grep synaptics /var/log/messages
Dec 10 23:32:02 puppypc11685 user.info kernel: usbcore: registered new interface driver synaptics_usb
Dec 10 23:32:02 puppypc11685 user.info kernel: psmouse serio1: synaptics: queried max coordinates: x [..5772], y [..5086]
Dec 10 23:32:02 puppypc11685 user.info kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000/0x0, board id: 0, fw id: 570026

-----

By PM, another user confirms flsynclient loads and works without problems in that installation.

If your current download of Dpup Stretch is corrupt, it may be helpful to re-download the iso.

Thanks
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

Terry H
Posts: 708
Joined: Sun 29 Mar 2009, 16:48
Location: The Heart of Muskoka, ON Canada

#88 Post by Terry H »

radky wrote: By PM, another user confirms flsynclient loads and works without problems in that installation.

If your current download of Dpup Stretch is corrupt, it may be helpful to re-download the iso.

Thanks
OK, thanks for that information. I will download and try again.

To complete the picture. This is the difference between booting Beta-1 and Beta-2.

Beta-1 with 4.9.67 kernel:

Code: Select all

# grep synaptics /var/log/Xorg.0.log
[    20.283] (II) LoadModule: "synaptics"
[    20.284] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    20.297] (II) Module synaptics: vendor="X.Org Foundation"
[    20.417] (II) LoadModule: "synaptics"
[    20.417] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    20.417] (II) Module synaptics: vendor="X.Org Foundation"
[    21.292] (II) Using input driver 'synaptics' for 'Synaptics Mouse'
[    21.328] (--) synaptics: Synaptics Mouse: auto-dev sets device to /dev/input/event7
[    21.343] (II) synaptics: Synaptics Mouse: ignoring touch events for semi-multitouch device
[    21.343] (--) synaptics: Synaptics Mouse: x-axis range 0 - 2000 (res 24)
[    21.343] (--) synaptics: Synaptics Mouse: y-axis range 0 - 1400 (res 27)
[    21.343] (--) synaptics: Synaptics Mouse: pressure range 0 - 127
[    21.343] (II) synaptics: Synaptics Mouse: device does not report finger width.
[    21.343] (--) synaptics: Synaptics Mouse: buttons: left right middle double triple
[    21.343] (--) synaptics: Synaptics Mouse: Vendor 0x2 Product 0x8
[    21.343] (--) synaptics: Synaptics Mouse: invalid finger width range.  defaulting to 0 - 15
[    21.343] (--) synaptics: Synaptics Mouse: touchpad found
[    21.360] (**) synaptics: Synaptics Mouse: (accel) MinSpeed is now constant deceleration 2.5
[    21.360] (**) synaptics: Synaptics Mouse: (accel) MaxSpeed is now 1.75
[    21.360] (**) synaptics: Synaptics Mouse: (accel) AccelFactor is now 0.082
[    21.360] (--) synaptics: Synaptics Mouse: touchpad found
# 

# grep synaptics /var/log/messages
Dec 10 19:34:04 puppypc16717 user.info kernel: usbcore: registered new interface driver synaptics_usb
# 
Beta-2 with 4.9.67:

Code: Select all


# grep synaptics /var/log/Xorg.0.log
#

# grep synaptics /var/log/messages
Dec 10 11:53:22 puppypc24644 user.info kernel: usbcore: registered new interface driver synaptics_usb
#

Edit: OK, it must have been a bad download, on the new download install, flsynclient now working. Thank you for your assistance.
Now to work on the Temperature issue.

Terry H
Posts: 708
Joined: Sun 29 Mar 2009, 16:48
Location: The Heart of Muskoka, ON Canada

#89 Post by Terry H »

radky wrote:

Code: Select all

cat /sys/class/thermal/thermal_zone0/temp

awk 'NR==1 {print $2}' /proc/acpi/thermal_zone/*/temperature

find /sys/devices/ -name temp1_input

find /sys/devices/ -name temp*_input

find /sys/bus/acpi/devices/ -name temp
Hi Terry,

The 'single temperature' monitor parses the five code lines above until it finds the first that returns true. For your laptop, I'm not sure which motherboard sensor is probed by line #1 but apparently it is responsible for the spurious 25 degree readout of the 'single temperature' monitor.

For your laptop, to sync the 'single temperature' monitor with the 'multi-core temperature' tooltip monitor, we could try the following:

Go to /usr/bin/fbpanel-sysinfobar and comment out (prepend with #) lines 162-167 and line 215.

If this helps, you could do the same for /usr/bin/fbpanel-sysinfo lines 13-18 and line 66.
That's great! This issue is now resolved, commenting out those statements for sysinfo and sysinfobar, now displays valid temperatures in both instances.

So once again thank you for taking the time to provide the information to fix the issues I have had.

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#90 Post by radky »

Terry H wrote:
OK, it must have been a bad download, on the new download install, flsynclient now working.
Good news Terry. Thanks for the report.

Terry H wrote:
This issue (temperature detection) is now resolved, commenting out those statements for sysinfo and sysinfobar, now displays valid temperatures in both instances.
Excellent!

I'll review the script to see if we can improve default temperature detection.
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#91 Post by radky »

mavrothal wrote:The 8Dec2017 version runs pretty nicely. Well done!
You may want to consider proper versioning, so possible update issues could be also addressed.

One little bug I came across with FBpanel is that at times "File" opens other directories than $HOME
For instance if you change icon theme from puppy icon switcher then it opens /usr/local/lib/X11/pixmaps. After some other app was /var/run or something.
Looks like file path is not hardcoded in FBpanel and/or it gets overwritten.
Is OK with JWM.
Thanks mavrothal. Will update for the next release.
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#92 Post by don570 »

Could you put in a version of probedisk that is compatible with BarryK.
See the following for my report...
http://murga-linux.com/puppy/viewtopic. ... 680#976680
_______________________________________________________

User avatar
Billtoo
Posts: 3720
Joined: Tue 07 Apr 2009, 13:47
Location: Ontario Canada

Dpup Stretch CE

#93 Post by Billtoo »

I installed to a 32gb flash drive to use on my HP desktop:

System: Host: puppypc13507 Kernel: 4.9.67 i686 (32 bit) Desktop: JWM 2.3.7 Distro: Dpup Stretch 7.0.0a2
Machine: Device: desktop System: HP product: 260-p029 serial: CNV6240BWP
Mobo: HP model: 81B4 v: 01 serial: PFPSK0BWJ301LW UEFI [Legacy]: AMI v: F.04 date: 05/10/2016
CPU: Dual core Intel Core i3-6100T (-HT-MCP-) speed/max: 800/3101 MHz
Graphics: Card: Intel HD Graphics 530
Display Server: X.org 1.19.2 driver: intel tty size: 150x33 Advanced Data: N/A for root
Network: Card-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller driver: r8169
Card-2: Realtek RTL8723BE PCIe Wireless Network Adapter driver: rtl8723be
Drives: HDD Total Size: 1096.8GB (0.5% used)
Weather: Conditions: 21 F (-6 C) - light snow Time: December 11, 11:51 PM EST
Info: Processes: 194 Uptime: 27 min Memory: 150.5/3898.0MB Client: Shell (bash) inxi: 2.3.5

Having problems:
Palemoon can't download anything, it just crashes.
Geany and Leafpad can't save anything, they crash when you try.
I downloaded both beta 2 isos and the md5sum didn't match for either one (the md5sum for the devx did match)

The package manager worked and I installed several applications, got them to run a spot using your suggestion.

That's it so far,
Thanks

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#94 Post by radky »

don570 wrote:Could you put in a version of probedisk that is compatible with BarryK.
See the following for my report...
http://murga-linux.com/puppy/viewtopic. ... 680#976680
@don570,

The Woof-CE devs are preparing updates for probedisk and probepart. Dpup Stretch will utilize those updates for compatibility with other Woof scripts.

Thanks for your request.
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

Re: Dpup Stretch CE

#95 Post by radky »

Billtoo wrote: Having problems:
Palemoon can't download anything, it just crashes.
Geany and Leafpad can't save anything, they crash when you try.
@Billtoo,

When apps are installed with the Puppy Package Manager, it seems petget may re-install the old libglib. This breaks the 'Save' and 'Open With' dialogs of palemoon, geany, leafpad, etc. To prevent this, the next update (coming soon) will adjust the file filters in package management.

Thanks
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

westwest
Posts: 72
Joined: Fri 10 Apr 2015, 04:32

FF57 and Iron crash

#96 Post by westwest »

Hi, Iron (sfs) and Firefox 57 (from .tar file) both crash without fail on my frugal EXT4 install.
No problems with these in any other pup.

here is the crash from Iron:

Code: Select all

# iron
LaunchProcess: failed to execvp:
/usr/lib/iron/nacl_helper_bootstrap
[1:1:1212/152053.107737:ERROR:nacl_fork_delegate_linux.cc(316)] Bad NaCl helper startup ack (0 bytes)
[20083:20083:1212/152115.924932:ERROR:navigation_entry_screenshot_manager.cc(135)] Invalid entry with unique id: 1
Received signal 7 BUS_ADRERR 0000ab187000
Received signal 7 BUS_ADRERR 00009e2ff000
#0 0x00000224ddef <unknown>
#1 0x00000224cb23 <unknown>
#2 0x00000224da7c <unknown>
#3 0x0000b77c2b20 ([vdso]+0xb1f)
#4 0x0000027b00a4 <unknown>
#5 0x0000027ac064 <unknown>
#6 0x0000023cf93b <unknown>
#7 0x0000023cf425 <unknown>
#8 0x0000023cf1d3 <unknown>
#9 0x0000023cf4da <unknown>
#10 0x000000cfb096 <unknown>
#11 0x0000024b750a <unknown>
#12 0x000002564aca <unknown>
#13 0x000000cfb096 <unknown>
#14 0x0000023d9ba9 <unknown>
#15 0x0000023d8ff4 <unknown>
#16 0x000000b6760f <unknown>
#17 0x0000023ea301 <unknown>
#18 0x000000cfb096 <unknown>
#19 0x00000248adb1 <unknown>
#20 0x00000248b3e8 <unknown>
#21 0x00000248b15c <unknown>
#22 0x0000024a4f9a <unknown>
#23 0x000002496f48 <unknown>
#24 0x000002492ff6 <unknown>
#25 0x000002492f16 <unknown>
#26 0x0000024a43a7 <unknown>
#27 0x00000249b325 <unknown>
#28 0x00000254db7b <unknown>
#29 0x000002484cc1 <unknown>
#30 0x00000254e32b <unknown>
#31 0x000002497abb <unknown>
#32 0x000002497577 <unknown>
#33 0x000002491f25 <unknown>
#34 0x000000c0c7e2 <unknown>
#35 0x000002349b2a <unknown>
#36 0x000002349c04 <unknown>
#37 0x0000024d1509 <unknown>
#38 0x000000b6760f <unknown>
#39 0x000002475a3e <unknown>
#40 0x000000d1cf2d <unknown>
#41 0x0000024770d1 <unknown>
#42 0x000002478011 <unknown>
#43 0x00000254a1ec <unknown>
#44 0x00000254a0a4 <unknown>
#45 0x00000226c048 <unknown>
#46 0x0000022fbcd9 <unknown>
#47 0x00000226c3d3 <unknown>
#48 0x000002269739 <unknown>
#49 0x00000228d36e <unknown>
#50 0x0000022b4861 <unknown>
#51 0x000000d7fd41 <unknown>
#52 0x000000d7fec1 <unknown>
#53 0x0000022b4995 <unknown>
#54 0x0000022af72d <unknown>
#55 0x0000b77a627a start_thread
#56 0x0000b6265b56 clone
  gs: 00000033  fs: 00000000  es: 0000007b  ds: 0000007b
 edi: 06bfbb2a esi: 0000000d ebp: aa6df9c8 esp: aa6df920
 ebx: 00000c0c edx: 00000000 ecx: 00000008 eax: 9e2ff000
 trp: 0000000e err: 00000006  ip: 027b00a4  cs: 00000073
 efl: 00010246 usp: aa6df920  ss: 0000007b
[end of stack trace]
Calling _exit(1). Core file will not be generated.
I suspect something similar for FF, as the behaviour is identical.

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

Re: FF57 and Iron crash

#97 Post by radky »

westwest wrote:Hi, Iron (sfs) and Firefox 57 (from .tar file) both crash without fail on my frugal EXT4 install...
Please check the changelog of the next release (Beta-3) with important bug fixes.

Thanks
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

radky
Posts: 977
Joined: Mon 03 May 2010, 03:13

#98 Post by radky »

See first post.

Dpup Stretch Beta-3 includes two critical bug fixes.
[color=blue][b][url=http://www.smokey01.com/radky/PupMates.html]PupMates[/url][/b][/color]

User avatar
Billtoo
Posts: 3720
Joined: Tue 07 Apr 2009, 13:47
Location: Ontario Canada

Dpup Stretch CE

#99 Post by Billtoo »

I installed beta 3 to a 32gb flash drive to use on my HP desktop:

System: Host: puppypc27232 Kernel: 4.9.68 i686 (32 bit) Desktop: Openbox 3.6.1 Distro: Dpup Stretch 7.0.0a2
Machine: Device: desktop System: Hewlett-Packard product: HPE-410f serial: MXX0370KF3
Mobo: FOXCONN model: 2AB1 v: 1.00 BIOS: American Megatrends v: 6.02 date: 07/21/2010
CPU: Hexa core AMD Phenom II X6 1045T (-MCP-) speed/max: 800/2700 MHz
Graphics: Card: Advanced Micro Devices [AMD/ATI] Redwood PRO [Radeon HD 5550/5570/5630/6510/6610/7570]
Display Server: X.org 1.19.2 driver: radeon tty size: 161x31 Advanced Data: N/A for root
Network: Card-1: Ralink RT3090 Wireless 802.11n 1T/1R PCIe driver: rt2800pci
Card-2: Realtek RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller driver: r8169
Drives: HDD Total Size: 1032.2GB (0.1% used)
Weather: Conditions: 12 F (-11 C) - light snow Time: December 13, 2:20 AM EST
Info: Processes: 202 Uptime: 16 min Memory: 188.0/8091.6MB Client: Shell (bash) inxi: 2.3.5

I installed applications with PPM.
Beta 3 is working well so far,
Thanks.
Attachments
screenshot.jpg
(52.41 KiB) Downloaded 636 times

User avatar
Billtoo
Posts: 3720
Joined: Tue 07 Apr 2009, 13:47
Location: Ontario Canada

Dpup Stretch CE

#100 Post by Billtoo »

I installed to an external hard drive:

System: Host: puppypc20439 Kernel: 4.9.68 i686 (32 bit) Desktop: JWM 2.3.7 Distro: Dpup Stretch 7.0.0a2
Machine: Device: desktop System: HP product: 260-p029 serial: CNV6240BWP
Mobo: HP model: 81B4 v: 01 serial: PFPSK0BWJ301LW UEFI [Legacy]: AMI v: F.04 date: 05/10/2016
CPU: Dual core Intel Core i3-6100T (-HT-MCP-) speed/max: 1000/3101 MHz
Graphics: Card: Intel HD Graphics 530
Display Server: X.org 1.19.2 driver: intel tty size: 163x34 Advanced Data: N/A for root
Network: Card-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller driver: r8169
Card-2: Realtek RTL8723BE PCIe Wireless Network Adapter driver: rtl8723be
Drives: HDD Total Size: 2000.4GB (3.1% used)
Weather: Conditions: 5 F (-15 C) - Partly Cloudy Time: December 13, 10:29 AM EST
Info: Processes: 202 Uptime: 4 min Memory: 142.2/3898.0MB Client: Shell (bash) inxi: 2.3.5

I installed applications with PPM.
Beta 3 is working well here too.

Thanks
Attachments
screenshot.jpg
(94.78 KiB) Downloaded 596 times

Post Reply