Welcome! Log In Create A New Profile

Advanced

HOWTO : HP T5325 X11 Gui (LXDE / XFCE)

Posted by Gravelrash 
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
March 05, 2020 07:11AM
for future hunters of xorg config files - would you be as kind as to post your working one? in the following format

# filename and descrittion of what system it is modified for
# creators name and contact (should you wish)

/etc/ path to file/filename.cont

contents of file

Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
March 05, 2020 07:26AM
I Think i will source myself another - hopefully work commitments will allow me to play
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
March 23, 2020 04:43PM
This works for me:

In /etc/X11/xorg.conf

Section "Files"
        FontPath        "/usr/share/fonts/X11/misc"
        FontPath        "/usr/share/fonts/X11/cyrillic"
        FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/Type1"
        FontPath        "/usr/share/fonts/X11/100dpi"
        FontPath        "/usr/share/fonts/X11/75dpi"
        # path to defoma fonts
        FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
        Load    "record"
        Load    "type1"
        Load    "bitmap"
        Load    "dbe"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "vbe"
EndSection

#Section "InputDevice"
#       Identifier      "Generic Keyboard"
#        Option          "XLeds" "1 2 3"
#       Option          "CoreKeyboard"
#       Option          "XkbRules"      "xorg"
#       Option "XkbModel"       "evdev"
#       Option "XkbLayout"      "us"
#       Option "XkbVariant"     "wincompat"
#       Option "XkbOptions"     "srvrkeys:none"
#       Driver          "evdev"
#       Option          "Device"        "/dev/input/event1"
#EndSection
Section "Monitor"
        Identifier      "Primary Monitor"
        Option          "DPMS"  "true"
        HorizSync       1-10000
        VertRefresh     1-10000
        Option          "NonDDCDefaultMode"             "1280x768@60"
        Option          "PreferredMode" "1280x768"
EndSection
Section "Device"
        Identifier      "Driver0"
        Screen          0
        Driver          "fbdev"
        BoardName       "XGI Volari Z11"
        BusID           "PCI:00:01:0"
        Option          "HWCursor"      "On"
        Option          "SWCursor"      "Off"
        Option          "NoAccel"       "0"
        Option          "DDCMode"       "On"
        Option          "DRI"           "On"
#       Option          "EnableSiSCtrl" "On"
        Option          "AccelMethod"   "EXA"
       Option          "UseFBDev"      "true"
        Option          "RenderAccel"   "true"
        Option          "BusType"       "PCIE"
#       Option          "MergedFB"      "true"
#       Option          "EnablePageFlip" "true"
        Option          "fbdev"         "/dev/fb0"
        Option          "ShadowFB"      "true"
EndSection
Section "Screen"
    Identifier     "Primary Screen"
    Device         "Driver0"
    Monitor        "Primary Monitor"
    DefaultDepth    24
    SubSection     "Display"
        Depth       8
        Modes      "1920x1080" "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Modes      "1920x1080" "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       24
        Modes      "1920x1080" "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
Section "ServerLayout"
        Identifier      "Default Layout"
#       InputDevice     "Generic Keyboard"
        Screen          0 "Primary Screen" 0 0
EndSection
Section "DRI"
        Mode    0666
EndSection
Section "ServerFlags"
        Option "DontVTSwitch" "false"
        Option "DontZap" "false"
        Option "DontZoom" "true"
EndSection

========
moderator edit: please use code tags to post log or config files



Edited 1 time(s). Last edit at 03/23/2020 05:54PM by bodhi.
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
March 23, 2020 09:30PM
Thanks Bodhi - ps I’m running Debian 10 with Bodhi’s 4 series kernel from instructions here. I’d post a screenshot but I don’t see the option to attach
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
April 16, 2020 06:29AM
@bodhi & @R92001r
Instructions updated to include the xorg.conf file

@R9200r - should you feel like adding instructions here around how to update to Debian 10 with Kernel 4 branch, i will happily include your findings and instructions on the front page HOWTO
Gert
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
October 28, 2023 12:09PM
Hi,

Realizing this is an old thread but I recently got a HP T5325 thin client and managed, following the instructions found here, to install Debian 11 on it but alas without X
It looks like the modules xgifb and fbcon are not found, maybe with the newer kernel they are called differently?

Only way I can access the machine is over the inbuilt serial port or network.
The monitor stays in standby.

Any ideas on this?

Regards,
Gert

root@t5325:~# uname -a                                                          
Linux t5325 5.10.0-26-marvell #1 Debian 5.10.197-1 (2023-09-29) armv5tel GNU/Linux

root@t5325:~# cat /etc/issue                                                    
Debian GNU/Linux 11 \n \l  
  
root@t5325:~# ls /lib/modules/5.10.0-26-marvell/kernel/drivers/video/fbdev/
arkfb.ko  mb862xx   s3fb.ko     tdfxfb.ko  vt8623fb.ko
core      pm3fb.ko  smscufx.ko  udlfb.ko

Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
October 28, 2023 01:48PM
Hi Gert,

> Realizing this is an old thread but I recently got
> a HP T5325 thin client and managed, following the
> instructions found here, to install Debian 11 on
> it but alas without X
> It looks like the modules xgifb and
> fbcon are not found, maybe with the newer
> kernel they are called differently?
>
> Only way I can access the machine is over the
> inbuilt serial port or network.
> The monitor stays in standby.
>
> Any ideas on this?
>

Unfortunately the new kernels does not directly support frame buffer anymore. So xgifb, which is an old ZGI fb driver, is no longer available.

There is a new simple DRM (Direct Rendering Manager) that supports frame buffer. But I have not got around to test it. So is is not in my released kernel either.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
January 24, 2025 04:02AM
Hi everybody.
I had installed LXDE on my Stora MS 2000 but the GUI doesn't work.

I followed the wiki.

1) from serial consolle i stopped the countdown and I typed:
setenv set_bootargs 'setenv bootargs console=tty0 console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params'
saveenv
reset

2) from a SSH connect on my mac OS:
apt-get update ; apt-get upgrade; apt-get install keyboard-configuration locales tzdata console-data  task-lxde-desktop --install-recommends -f -y

3) there wasn't /etc/X11/xorg.conf (there was etc/X11/xorg.conf.d).
I typed
nano /etc/X11/xorg.conf
and later
ection "Files"
        FontPath        "/usr/share/fonts/X11/misc"
        FontPath        "/usr/share/fonts/X11/cyrillic"
        FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/Type1"
        FontPath        "/usr/share/fonts/X11/100dpi"
        FontPath        "/usr/share/fonts/X11/75dpi"
        # path to defoma fonts
        FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
        Load    "record"
        Load    "type1"
        Load    "bitmap"
        Load    "dbe"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "vbe"
EndSection

#Section "InputDevice"
#       Identifier      "Generic Keyboard"
#        Option          "XLeds" "1 2 3"
#       Option          "CoreKeyboard"
#       Option          "XkbRules"      "xorg"
#       Option "XkbModel"       "evdev"
#       Option "XkbLayout"      "us"
#       Option "XkbVariant"     "wincompat"
#       Option "XkbOptions"     "srvrkeys:none"
#       Driver          "evdev"
#       Option          "Device"        "/dev/input/event1"
#EndSection
Section "Monitor"
        Identifier      "Primary Monitor"
        Option          "DPMS"  "true"
        HorizSync       1-10000
        VertRefresh     1-10000
        Option          "NonDDCDefaultMode"             "1280x768@60"
        Option          "PreferredMode" "1280x768"
EndSection
Section "Device"
        Identifier      "Driver0"
        Screen          0
        Driver          "fbdev"
        BoardName       "XGI Volari Z11"
        BusID           "PCI:00:01:0"
        Option          "HWCursor"      "On"
        Option          "SWCursor"      "Off"
        Option          "NoAccel"       "0"
        Option          "DDCMode"       "On"
        Option          "DRI"           "On"
#       Option          "EnableSiSCtrl" "On"
        Option          "AccelMethod"   "EXA"
       Option          "UseFBDev"      "true"
        Option          "RenderAccel"   "true"
        Option          "BusType"       "PCIE"
#       Option          "MergedFB"      "true"
#       Option          "EnablePageFlip" "true"
        Option          "fbdev"         "/dev/fb0"
        Option          "ShadowFB"      "true"
EndSection
Section "Screen"
    Identifier     "Primary Screen"
    Device         "Driver0"
    Monitor        "Primary Monitor"
    DefaultDepth    24
    SubSection     "Display"
        Depth       8
        Modes      "1920x1080" "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Modes      "1920x1080" "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       24
        Modes      "1920x1080" "1280x768" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
Section "ServerLayout"
        Identifier      "Default Layout"
#       InputDevice     "Generic Keyboard"
        Screen          0 "Primary Screen" 0 0
EndSection
Section "DRI"
        Mode    0666
EndSection
Section "ServerFlags"
        Option "DontVTSwitch" "false"
        Option "DontZap" "false"
        Option "DontZoom" "true"
EndSection

and saved it.

4) edited typing nano /etc/initramfs-tools/modules and wrote:
xgifb
fbcon

5) updated initramfs

update-initramfs -u

6) updated uInitrd
cd /boot
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-6.5.7-kirkwood-tld-1 -d initrd.img-6.5.7-kirkwood-tld-1 uInitrd

7) i edited uncomment the entries about tty1 to tty6 /etc/inittab (only in getty)

But Stora still works in line-command mode.

Where did I go wrong?

My log:

 
 
                                          done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
Begin: Will now check root file system ... fsck from util-linux 2.38.1
[/sbin/fsck.ext3 (1) -- /dev/sda1] fsck.ext3 -a -C0 /dev/sda1
rootfs: clean, 134725/3784704 files, 1385771/15113232 blocks
done.
[   25.291879][  T185] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[   25.451523][  T185] EXT4-fs (sda1): mounted filesystem 5511f184-554a-4846-82f7-0751526f7096 ro with ordered data mode. Quota mode: none.
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[   26.569795][    T1] systemd[1]: Inserted module 'autofs4'
[   26.703265][    T1] systemd[1]: systemd 252.33-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   26.737216][    T1] systemd[1]: Detected architecture arm.
 
Welcome to Debian GNU/Linux 12 (bookworm)!
 
[   26.753891][    T1] systemd[1]: Hostname set to <debian>.
[   29.858642][    T1] systemd[1]: Queued start job for default target graphical.target.
[   29.907742][    T1] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  OK  ] Created slice system-getty.slice - Slice /syste[   29.922752][    T1] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
m/getty.
[  OK  ] Created slice system-modpr…lice - Slice /syst[   29.939264][    T1] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
em/modprobe.
[  OK  ] Created slice syste[   29.954547][    T1] systemd[1]: Created slice user.slice - User and Session Slice.
m-seria… - Slice /system/s[   29.964993][    T1] systemd[1]: Started ntpsec-systemd-netif.path.
erial-getty.
[  OK     29.974303][    T1] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
0m] Created slice user.slice - User[   29.989694][    T1] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
 and Session Sli[   30.005003][    T1] systemd[1]: Expecting device dev-ttyS0.device - /dev/ttyS0...
ce.
[  OK  ] Start[   30.014405][    T1] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
ed ntpsec-systemd-netif[   30.027444][    T1] systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
.path.
[  OK  [   30.038651][    T1] systemd[1]: Reached target slices.target - Slice Units.
] Started systemd-ask-p[   30.048203][    T1] systemd[1]: Reached target swap.target - Swaps.
asswo… Request[   30.057140][    T1] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
s to Wall Directory Watch.
[  OK  ] Set up automount proc-sys-…rmats File System Automount Point.
         Expecting device dev-ttyS0.device - /dev/ttyS0...
[  OK  ] Reached target integrityse…Local Integrity Protected Volumes.
[  OK  ] Reached target nss-lookup.…m - Host and Network Name Lookups.
[  OK  ] Reached target slices.target - Slice Units.
[  OK  ] Reached target swap.target - Swaps.
[  OK  ] Reached target veritysetup… - Local Verity Protected Volumes.
[   30.138168][    T1] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[  OK  ] Listening on[   30.149987][    T1] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
 rpcbind.socke… RPCbi[   30.161851][    T1] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
nd Server Activation Socket.
[  OK     30.175885][    T1] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
0m] Listening on systemd-fsckd…sck to[   30.188640][    T1] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
 fsckd communication Socket.
[  OK     30.202384][    T1] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
0m] Listening on systemd-initc… initctl Compatibility Named Pipe.
[  OK  ] Listening on system[   30.222531][    T1] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
d-journ…socket - Journal Audit Socket.
[   30.234289][    T1] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  OK  ] Listening on system[   30.247389][    T1] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
d-journ…t - Journal Socket (/dev/log).
[  OK  ] Listening on systemd-journald.socket - Journal Socket.
[  OK  ] Listening on systemd-udevd….socket - udev Control Socket.
[  OK  ] Listening on systemd-udevd…l.socket - udev Kernel Socket.
[   30.296930][    T1] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
         Mounting dev-mqueue.mount▒▒POSIX Message Queue File System...
[   30.333595][    T1] systemd[1]: Mounting proc-fs-nfsd.mount - NFSD configuration filesystem...
         Mounting proc-fs-nfsd.moun…- NFSD configuration filesystem...
[   30.387016][    T1] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
         Mounting sys-kernel-debug.… - Kernel Debug File System...
[   30.425053][    T1] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
         Mounting sys-k[   30.448142][    T1] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
ernel-tracin… - Kernel Trace File System...
[   30.500955][    T1] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
         Starting fake-hwclock.serv…estore / save the current clock...
[   30.544606][    T1] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
         Starting kmod-static-nodes…ate List of Static Device Nodes...
[   30.637805][    T1] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
         Starting modprobe@configfs…m - Load Kernel Module configfs...
[   30.707959][    T1] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
         Starting modprobe@dm_mod.s…[0m - Load Kernel Module dm_mod...
[   30.757767][    T1] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
         Starting modprobe@drm.service - Load Kernel Module drm...
[   30.837580][    T1] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
         Starting modprobe@efi_psto…- Load Kernel Module efi_pstore...
[   30.907550][    T1] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
         Starting modprobe@fuse.ser…e - Load Kernel Module fuse...
[   30.977790][    T1] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
         Starting modprobe@loop.ser…e - Load Kern[   31.010908][    T1] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
el Module loop...
[   31.087506][    T1] systemd[1]: Starting systemd-journald.service - Journal Service...
         Starting systemd-journald.service - Journal Service...
[   31.157790][    T1] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
         Starting systemd-modules-l…rvice - Load Kernel Modules...
[   31.247751][    T1] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
         Starting systemd-remount-f…nt Root and Kernel File Systems...
[   31.357762][    T1] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
         Starting systemd-udev-trig…[0m - Coldplug All udev Devices...
[   31.536555][    T1] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[  OK  ] Mounted dev-mqueue.mount▒▒- POSIX Message Queue File System.
[   31.580414][    T1] systemd[1]: Mounted proc-fs-nfsd.mount - NFSD configuration filesystem.
[  OK  ] Mounted proc-fs-nfsd.mount…m - NFSD configuration filesystem.
[   31.622265][    T1] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   31.646346][  T243] EXT4-fs (sda1): re-mounted 5511f184-554a-4846-82f7-0751526f7096 r/w. Quota mode: none.
[  OK  ] Mounted sys-kernel-debug.m…nt - Kernel Debug File System.
[   31.703970][    T1] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[  OK  ] Mounted sys-kernel-tracing…nt[   31.762120][    T1] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
 - Kernel Trace File System.
[  OK  ] Finished fake-hwclock.serv… Restore / save the current clock.
[   31.810661][    T1] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[  OK  ] Finished kmod-static-nodes…reate List of Static D[   31.853051][    T1] systemd[1]: modprobe@configfs.service: Deactivated successfully.
evice Nodes.
[   31.896808][    T1] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[  OK  ] Finished modprobe@configfs…[0m - Load Kernel Module configfs.
[   31.930679][    T1] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[   31.968772][    T1] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[  OK  ] Finished modprobe@dm_mod.s…e [   32.001345][    T1] systemd[1]: modprobe@drm.service: Deactivated successfully.
- Load Kernel Module dm_mod.
[   32.046465][    T1] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[  OK  ] Finished modprobe@drm.service - Load Kernel Module drm.
[   32.080750][    T1] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   32.118759][    T1] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[  OK  ] Finished modprobe@efi_psto…m - Lo[   32.151506][    T1] systemd[1]: modprobe@fuse.service: Deactivated successfully.
ad Kernel Module efi_pstore.
[   32.188762][    T1] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[  OK  ] Finished modprobe@fuse.service [   32.221485][    T1] systemd[1]: modprobe@loop.service: Deactivated successfully.
- Load Kernel Module fuse.
[   32.268344][    T1] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[  OK  ] Finished modprobe@loop.service - Load Kernel Module loop.
[   32.306581][    T1] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[  OK  ] Finished systemd-modules-l…service - Load Kernel Modules.
[   32.341659][    T1] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[  OK  ] Finished systemd-remount-f…ount Root and Kernel File Systems.
[   32.447355][    T1] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
         Mounting sys-fs-fuse-conne… - FUSE Control File System...
[   32.550178][    T1] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
         Mounting sys-k[   32.598755][    T1] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
ernel-config…ernel Configuration File System...
[   32.687390][    T1] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[   32.817208][    T1] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
         Startin[   32.857857][    T1] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
g systemd-random-se…ice - Load/Save Random Seed...
[   32.958345][    T1] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
         Starting systemd-sysctl.se…ce - Apply Kernel Variables...
[   33.063398][    T1] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[   33.111335][   T60] random: crng init done
         Starting systemd-sysusers.…rvice - Create System Users...
[   33.262774][    T1] systemd[1]: Started systemd-journald.service - Journal Service.
[  OK  ] Started systemd-journald.service - Journal Service.
[  OK  ] Mounted sys-fs-fuse-connec…nt - FUSE Control File System.
[  OK  ] Mounted sys-kernel-config.… Kernel Configuration File System.
[  OK  ] Finished systemd-random-se…rvice - Load/Save Random Seed.
[  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.
         Starting systemd-journal-f…h Journal to Persistent Storage...
[  OK  ] Finished systemd-sysusers.service - Create System Users.
         Starting systemd-tmpfiles-…ate Static Device Nodes in /dev...
[   33.874780][  T239] systemd-journald[239]: Received client request to flush runtime journal.
[  OK  ] Finished systemd-udev-trig…e - Coldplug All udev Devices.
         Starting ifupdown-pre.serv…ynchronize boot up for ifupdown...
[  OK  ] Finished systemd-tmpfiles-…reate Static Device Nodes in /dev.
[  OK  ] Reached target local-fs-pr…reparation for Local File Systems.
         Mounting tmp.mount - /tmp...
         Starting systemd-udevd.ser…ger for Device Events and Files...
[  OK  ] Mounted tmp.mount - /tmp.
[  OK  ] Reached target local-fs.target - Local File Systems.
         Starting plymouth-read-wri…mouth To Write Out Runtime Data...
         Starting systemd-binfmt.se…et Up Additional Binary Formats...
[  OK  ] Finished plymouth-read-wri…lymouth To Write Out Runtime Data.
         Mounting proc-sys-fs-binfm…utable File Formats File System...
[  OK  ] Mounted proc-sys-fs-binfmt…ecutable File Formats File System.
[  OK  ] Finished systemd-binfmt.se… Set Up Additional Binary Formats.
[  OK  ] Finished systemd-journal-f…ush Journal to Persistent Storage.
         Starting systemd-tmpfiles-…te System Files and Directories...
[  OK  ] Started systemd-udevd.serv…nager for Device Events and Files.
         Starting plymouth-start.se…[0m - Show Plymouth Boot Screen...
[  OK  ] Started plymouth-start.ser…e - Show Plymouth Boot Screen.
[  OK  ] Started systemd-ask-passwo…uests to Plymouth Directory Watch.
[  OK  ] Reached target cryptsetup.…get - Local Encrypted Volumes.
         Starting modprobe@dm_mod.s…[0m - Load Kernel Module dm_mod...
         Starting modprobe@efi_psto…- Load Kernel Module efi_pstore...
         Starting modprobe@loop.ser…e - Load Kernel Module loop...
[  OK  ] Finished systemd-tmpfiles-…eate System Files and Directories.
[  OK  ] Finished modprobe@dm_mod.s…e - Load Kernel Module dm_mod.
[  OK  ] Finished modprobe@efi_psto…m - Load Kernel Module efi_pstore.
[  OK  ] Finished modprobe@loop.service - Load Kernel Module loop.
         Mounting run-rpc_pipefs.mount - RPC Pipe File System...
[  OK  ] Started resolvconf.service… - Nameserver information manager.
[  OK  ] Reached target network-pre…get - Preparation for Network.
         Starting rpcbind.service - RPC bind portmap service...
         Starting systemd-update-ut…rd System Boot/Shutdown in UTMP...
[  OK  ] Mounted run-rpc_pipefs.mount - RPC Pipe File System.
[  OK  ] Reached target rpc_pipefs.target.
         Starting nfs-blkmap.servic…NFS block layout mapping daemon...
         Starting nfs-idmapd.servic…- NFSv4 ID-name mapping service...
         Starting nfsdcld.service▒▒ - NFSv4 Client Tracking Daemon...
[  OK  ] Reached target nfs-client.target - NFS client services.
[  OK  ] Started rpcbind.service - RPC bind portmap service.
[  OK  ] Started nfs-blkmap.service… pNFS block layout mapping daemon.
[  OK  ] Started nfs-idmapd.service…m - NFSv4 ID-name mapping service.
[  OK  ] Started nfsdcld.service - NFSv4 Client Tracking Daemon.
[  OK  ] Finished systemd-update-ut…cord System Boot/Shutdown in UTMP.
[  OK  ] Reached target remote-fs-p…eparation for Remote File Systems.
[  OK  ] Reached target remote-fs.target - Remote File Systems.
[  OK  ] Reached target rpcbind.target - RPC Port Mapper.
[  OK  ] Reached target sysinit.target - System Initialization.
[  OK  ] Started cups.path - CUPS Scheduler.
[  OK  ] Started anacron.timer - Trigger anacron every hour.
[  OK  ] Started apt-daily.timer - Daily apt download activities.
[  OK  ] Started apt-daily-upgrade.… apt upgrade and clean activities.
[  OK  ] Started dpkg-db-backup.tim… Daily dpkg database backup timer.
[  OK  ] Started e2scrub_all.timer▒▒etadata Check for All Filesystems.
[  OK  ] Started exim4-base.timer - Daily exim4-base housekeeping.
[  OK  ] Started man-db.timer - Daily man-db regeneration.
[  OK  ] Started ntpsec-rotate-stat…mer - Rotate ntpd stats daily.
[  OK  ] Started systemd-tmpfiles-c… Cleanup of Temporary Directories.
[  OK  ] Reached target paths.target - Path Units.
[  OK  ] Reached target timers.target - Timer Units.
[  OK  ] Listening on avahi-daemon.…NS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on cups.socket - CUPS Scheduler.
[  OK  ] Listening on dbus.socket▒▒- D-Bus System Message Bus Socket.
[  OK  ] Reached target sockets.target - Socket Units.
[  OK  ] Reached target basic.target - Basic System.
[  OK  ] Started anacron.service - Run anacron jobs.
         Starting avahi-daemon.serv…e - Avahi mDNS/DNS-SD Stack...
         Starting busybox-syslogd.service - LSB: Starts syslogd...
[  OK  ] Started cron.service -…kground program processing daemon.
         Starting dbus.service - D-Bus System Message Bus...
         Starting dphys-swapfile.se…unmount, and delete a swap file...
         Starting dundee.service - DUN service...
         Starting e2scrub_reap.serv…e ext4 Metadata Check Snapshots...
[  OK  ] Started ntpsec-systemd-netif.service.
         Starting ofono.service - Telephony service...
         Starting systemd-logind.se…ice - User Login Management...
         Starting udisks2.service - Disk Manager...
[  OK  ] Found device dev-ttyS0.device - /dev/ttyS0.
[  OK  ] Finished e2scrub_reap.serv…ine ext4 Metadata Check Snapshots.
[  OK  ] Started busybox-syslogd.service - LSB: Starts syslogd.
         Starting busybox-klogd.service - LSB: Starts klogd...
[  OK  ] Started dbus.service - D-Bus System Message Bus.
[  OK  ] Started busybox-klogd.service - LSB: Starts klogd.
         Starting connman.service - Connection service...
         Starting wpa_supplicant.service - WPA supplicant...
[  OK  ] Started ofono.service - Telephony service.
[  OK  ] Started avahi-daemon.service - Avahi mDNS/DNS-SD Stack.
[  OK  ] Started dundee.service - DUN service.
[  OK  ] Started systemd-logind.service - User Login Management.
[ ***  ] (1 of 5) Job connman.service/start running (26s / 1min 53s)
[   56.617230][  T268] lm75 0-0048: supply vs not found, using dummy regulator
[   56.691115][  T268] hwmon hwmon0: temp1_input not attached to any thermal zone
[   ***] (2 of 5) Job dphys-swapfile.service/start running (27s / no limit)
[    **] (3 of 5) Job wpa_supplicant.service/start running (29s / 1min 53s)
[   59.262417][  T306] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[  OK  ] Listening on systemd-rfkil…l Switch Status /dev/rfkill Watch.
[  *** ] (4 of 5) Job udisks2.service/start running (33s / 1min 50s)
[   63.194115][  T391] Bluetooth: Core ver 2.22
[   63.212022][  T391] NET: Registered PF_BLUETOOTH protocol family
[   63.224655][  T391] Bluetooth: HCI device and connection manager initialized
[   63.233306][  T391] Bluetooth: HCI socket layer initialized
[   63.239695][  T391] Bluetooth: L2CAP socket layer initialized
[   63.245598][  T391] Bluetooth: SCO socket layer initialized
[***   ] (4 of 5) Job udisks2.service/start running (34s / 1min 50s)
[  OK  ] Finished dphys-swapfile.se…t/unmount, and delete a swap file.
[  OK  ] Started wpa_supplicant.service - WPA supplicant.
[  OK  ] Finished ifupdown-pre.serv… synchronize boot up for ifupdown.
         Starting networking.service - Raise network interfaces...
[  OK  ] Started connman.service - Connection service.
         Starting connman-wait-onli…ork to be configured by ConnMan...
         Starting polkit.service - Authorization Manager...
[   78.740611][  T457] bpfilter: Loaded bpfilter_umh pid 461
[   78.756363][  T461] Started bpfilter
[  OK  ] Started polkit.service - Authorization Manager.
         Starting systemd-hostnamed.service - Hostname Service...
[ ***  ] (4 of 4) Job udisks2.service/start running (53s / 1min 50s)
[  OK  ] Started systemd-hostnamed.service - Hostname Service.
[   89.845122][  T497] 8021q: 802.1Q VLAN Support v1.8
[  OK  ] Finished connman-wait-onli…twork to be configured by ConnMan.
[  OK  ] Started udisks2.service - Disk Manager.
[  OK  ] Finished networking.service - Raise network interfaces.
[  OK  ] Reached target network.target - Network.
[  OK  ] Reached target network-online.target - Network is Online.
         Starting cups.service - CUPS Scheduler...
         Starting exim4.service… LSB: exim Mail Transport Agent...
         Starting nfs-mountd.service - NFS Mount Daemon...
         Starting ntpsec.service - Network Time Service...
         Starting rc-local.service▒▒m - /etc/rc.local Compatibility...
         Starting rpc-statd.service…us monitor for NFSv2/3 locking....
         Starting ssh.service - OpenBSD Secure Shell server...
         Starting systemd-user-sess…vice - Permit User Sessions...
[  OK  ] Started nfs-mountd.service - NFS Mount Daemon.
[  OK  ] Started rpc-statd.service▒▒atus monitor for NFSv2/3 locking..
[  OK  ] Started ntpsec.service - Network Time Service.
[  OK  ] Finished systemd-user-sess…ervice - Permit User Sessions.
[  OK  ] Started cups.service - CUPS Scheduler.
[  OK  ] Started cups-browsed.servi…e CUPS printers available locally.
         Starting lightdm.service - Light Display Manager...
         Starting nfs-server.service - NFS server and services...
[  OK  ] Started rc-local.service - /etc/rc.local Compatibility.
         Starting plymouth-quit-wai… until boot process finishes up...
[  OK  ] Started ssh.service - OpenBSD Secure Shell server.
[   ***] (3 of 4) Job plymouth-quit-wait.ser…tart running (1min 36s / no limit)
[  126.190510][  T679] NFSD: Using nfsdcld client tracking operations.
[  OK  ] Finished nfs-server.service - NFS server and services.
         Starting rpc-statd-notify.…- Notify NFS peers of a restart...
[  OK  ] Started rpc-statd-notify.s…m - Notify NFS peers of a restart.
[  OK  ] Created slice user-0.slice - User Slice of UID 0.
         Starting user-runtime-dir@…r Runtime Directory /run/user/0...
[     *] (4 of 4) Job exim4.service/start running (1min 49s / 6min 13s)
[  160.614792][  T912] systemd[912]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
 
Debian GNU/Linux 12 debiandebian login: root
root
Password: root
 
Linux debian 6.5.7-kirkwood-tld-1 #2 PREEMPT Wed Oct 18 21:14:11 PDT 2023 armv5tel
 
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
 
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Fri Jan 24 01:51:37 PST 2025 from 192.168.0.2 on pts/0
debian
192.168.0.17
NETGEAR MS2000 / MS2110 aka Stora
Linux version 6.5.7-kirkwood-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #2 PREEMPT Wed Oct 18 21:14:11 PDT 2023
Debian 12.9
Fri Jan 24 01:52:38 PST 2025 up 3 minutes
root@debian:~#
 ttyS0
 
debian login:

the code before "done" (at the beginning of the code above) I can't copy it
Re: HOWTO : HP T5325 X11 Gui (LXDE / XFCE)
January 24, 2025 03:27PM
colibri,

> I had installed LXDE on my Stora MS 2000 but the
> GUI doesn't work.

The Stora does not have graphics card. This tutorial can not be used verbatim. Basically, you should learn from this tutorial is how to install LXDE.

But for a headless box, see both tutorials:

Wiki thread

Quote

Debian Desktop

XFCE desktop Pogoplug Debian
Pogoplug Debian with XDM display manager

NOTE: There are some details in these 2 tutorials that are not applicable to the Stora.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Author:

Your Email:


Subject:


Spam prevention:
Please, enter the code that you see below in the input field. This is for blocking bots that try to post this form automatically. If the code is hard to read, then just try to guess it right. If you enter the wrong code, a new image is created and you get another chance to enter it right.
Message: