WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: PXE Boot  (Read 5580 times)

Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
PXE Boot
« on: June 09, 2022, 06:07:00 AM »
Hi there,

i am Trying to setup a Server for PXE netbooting.

i already found this link to the instructions: http://wiki.tinycorelinux.net/wiki:netbooting

But it seams that i don't have enough rights to look into the wiki as i am getting:
Code: [Select]
User authentication is temporarily unavailable. If this situation persists, please inform your Wiki Admin.
====== Permission Denied ====== Sorry, you don't have enough rights to continue.

====== Login ====== You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.

can anyone help ?

Thanx

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: PXE Boot
« Reply #1 on: June 09, 2022, 06:20:27 AM »
Hi Rabie
An alternative link for viewing the Wiki can be found here:
http://forum.tinycorelinux.net/index.php/topic,25220.0.html

Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #2 on: June 15, 2022, 02:59:42 AM »
Hi Rich,

thank you for the new Link  :)

i have managed to get the pxe Server to work and boot to the BaseCore

But i don't really understand the Step how to make the tce directory available   :-\

i tried the following Example from the Wiki but without success

Code: [Select]
Putting it all together
Note: If you are running Core 5.2 or newer, nfs-utils depends on rpcbind,tcz and libtirpc.tcz. These will need to be added to the nfs.list

The tftp server is sourced at /tftpboot. We are going to setup workstation1. It is going to have a /mnt/nfs that corresponds to /tftpboot/nfs/ws1. On the server myserver:

#mkdir -p /tftpboot/nfs/ws1/tce
#copy nfs-utils.tcz to /tftpboot/nfs/ws1/tce
#create the file /tftpboot/nfs/ws1/nfs.list that contains:
#/nfs/ws1/nfs-utils.tcz
#Copy tinycore.gz and bzImage to /tftpboot/nfs/ws1
#add ”/tftpboot/nfs/ws1 *(rw,no_root_squash)” to /etc/exports, and “exportfs -a”.
#Create a PXE config file that contains the following:
#label ws1
#  MENU LABEL WS1
#  kernel /nfs/ws1/bzImage
#  append initrd=/nfs/ws1/tinycore.gz nfsmount=myserver:/tftpboot/nfs/ws1 tftplist=myserver:/nfs/ws1/nfs.list tce=nfs/tce
When you select ws1 from the PXE boot menu, the workstation does the following:

Loads TCL.
#TFTP gets /nfs/ws1/nfs.list from myserver.
#TFTP gets each file listed in nfs.list and places it in /tmp/tce, a temporary directory in RAM.
#Mounts all applications in /tmp/tce.
#Mounts myserver:/tftpboot/nfs/ws1 onto /mnt/nfs.
#Any additional extensions installed by Appbrowser will be saved on the nfs share, and will be loaded during boot, just as you would expect with a local drive.

#When you run the Backup-Restore utility, set the Device to nfs or nfs/tce.

can you maybe help ?

Thank you

Offline tacpilot

  • Newbie
  • *
  • Posts: 30
Re: PXE Boot
« Reply #3 on: June 15, 2022, 07:32:18 AM »
My PXE boot experience is from warewulf clustering and I have no experience with PXE on TC,
but I will take a shot at it from what you have posted.
Making sure we are on the same page from the info you posted it would seem..
  • You have booted the PXE master server.
  • created on the server, /nfs/ws1/nfs.list file listing all the extensions you want avail to the nodes (guessing one per line)
  • You have booted the worker node successfully ??
  • logging into worker node you should find in /tmp/tce , all the node specific extensions you listed in /nfs/ws1/nfs.list on the server
  • adding new extensions to the worker node will be saved back to the server in /mnt/nfs share
Never limit your creativity by the imagination of others.

Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #4 on: June 17, 2022, 12:02:15 AM »
Hi tacpilot,

Quote
You have booted the PXE master server.
yes
Quote
created on the server, /nfs/ws1/nfs.list file listing all the extensions you want avail to the nodes (guessing one per line)
yes but i don't know if i did it in the right way.

i copied all extensions to nfs/ws1/tce/optional
and add the lines to nfs/ws1/nfs.list like:
Code: [Select]
/nfs/ws1/tce/optional/nfs-utils.tcz
/nfs/ws1/tce/optional/getlocale.tcz
/nfs/ws1/tce/optional/nano.tcz
/nfs/ws1/tce/optional/Xorg-7.7.tcz
etc...

Quote
You have booted the worker node successfully ??
if you mean with worker node the client then yes i managed to boot TinyCore from PXE but it didn't load all extensions i listed :-\

Quote
logging into worker node you should find in /tmp/tce , all the node specific extensions you listed in /nfs/ws1/nfs.list on the server
yes you are right but i didn't find all extensions i listed in nfs.list

as i get some messages while booting like:

Code: [Select]
open /dev/fb0: no such device
loop1: detected capacity change from 0 to 8
loop1: detected capacity change from 0 to 8
loop1: detected capacity change from 0 to 72
loop2: detected capacity change from 0 to 128
loop3: detected capacity change from 0 to 264
loop4: detected capacity change from 0 to 3368
loop5: detected capacity change from 0 to 88
loop6: detected capacity change from 0 to 28160
loop7: detected capacity change from 0 to 1520
loop8: detected capacity change from 0 to 280
loop9: detected capacity change from 0 to 64
loop10: detected capacity change from 0 to 24
loop11: detected capacity change from 0 to 928

does that mean that there is not enough RAM to load all extensions ?

this is my PXE config:
Code: [Select]
#DEFAULT menu.c32
#timeout 0

#MENU TITLE PXE-Server Boot Menu

#LABEL TinyCore
#MENU LABEL TinyCore
#KERNEL /nfs/ws1/vmlinuz64
#APPEND initrd=/nfs/ws1/corepure64.gz nfsmount=Server-IP:/tftpboot/nfs/ws1 tftplist=Server-IP:/nfs/ws1/nfs.list tce=nfs/ws1/tce

the # to prevent Forum from giving Error
« Last Edit: June 17, 2022, 12:30:21 AM by Rabie »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: PXE Boot
« Reply #5 on: June 17, 2022, 05:24:21 AM »
Hi Rabie
... this is my PXE config:
Code: [Select]
#DEFAULT menu.c32
#timeout 0

#MENU TITLE PXE-Server Boot Menu

#LABEL TinyCore
#MENU LABEL TinyCore
#KERNEL /nfs/ws1/vmlinuz64
#APPEND initrd=/nfs/ws1/corepure64.gz nfsmount=Server-IP:/tftpboot/nfs/ws1 tftplist=Server-IP:/nfs/ws1/nfs.list tce=nfs/ws1/tce

Try adding a leading slash to the  tce=  path:
Code: [Select]
tce=/nfs/ws1/tce

Offline tacpilot

  • Newbie
  • *
  • Posts: 30
Re: PXE Boot
« Reply #6 on: June 17, 2022, 05:45:21 AM »
Sounds like you are close.. If still have issues after adding
the forward slash to your boot code, may also try listing just
the extension name without the path in the /nfs/ws1/nfs.list file.
Never limit your creativity by the imagination of others.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: PXE Boot
« Reply #7 on: June 17, 2022, 07:09:34 AM »
Hi Rabie
Forget what I said. You had it right, there is no leading slash.

...
Quote
You have booted the worker node successfully ??
if you mean with worker node the client then yes i managed to boot TinyCore from PXE but it didn't load all extensions i listed :-\

Quote
logging into worker node you should find in /tmp/tce , all the node specific extensions you listed in /nfs/ws1/nfs.list on the server
yes you are right but i didn't find all extensions i listed in nfs.list ...
So some extensions are loading and some are not?

What do these commands return:
Code: [Select]
ls -l /tmp/tce
ls -l /mnt/nfs/tce
ls -l /mnt/nfs/tce/optional
ls -l /usr/local/tce.installed
readlink /etc/sysconfig/tcedir

Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #8 on: June 20, 2022, 02:43:16 AM »
Hi,

so i was wrong! All extensions in the List are loaded but they are not in the same location as those i install after booting (/mnt/nfs/ws1/tce/optional/)
Code: [Select]
tc@box:~$ ls -al /tmp/tce/optional/
total 184024
drwxrwxr-x    2 tc       staff          820 Jan  4 06:03 ./
drwxrwxr-x    3 root     staff           80 Jan  4 06:01 ../
-rw-r--r--    1 root     root          4096 Jan  4 06:01 Xorg-7.7-dev.tcz
-rw-r--r--    1 root     root          4096 Jan  4 06:01 Xorg-7.7.tcz
-rw-r--r--    1 root     root         36864 Jan  4 06:02 acpid.tcz
-rw-r--r--    1 root     root         65536 Jan  4 06:01 aterm.tcz
-rw-r--r--    1 root     root        499712 Jan  4 06:02 bash.tcz
-rw-r--r--    1 root     root        532480 Jan  4 06:02 conky.tcz
-rw-r--r--    1 root     root         12288 Jan  4 06:02 fbv.tcz
-rw-r--r--    1 root     root     107020288 Jan  4 06:02 firefox.tcz
-rw-r--r--    1 root     root      12832768 Jan  4 06:01 firmware-iwl9000.tcz
-rw-r--r--    1 root     root      14417920 Jan  4 06:02 firmware-iwlax20x.tcz
-rw-r--r--    1 root     root      20316160 Jan  4 06:02 firmware-iwlwifi.tcz
-rw-r--r--    1 root     root         36864 Jan  4 06:02 firmware-rtl_nic.tcz
-rw-r--r--    1 root     root       1724416 Jan  4 06:01 freerdp.tcz
-rw-r--r--    1 root     root          4096 Jan  4 06:01 getlocale.tcz
-rw-r--r--    1 root     root         16384 Jan  4 06:03 giflib7.tcz
-rw-r--r--    1 root     root      21069824 Jan  4 06:03 grub2-multi.tcz
-rw-r--r--    1 root     root         12288 Jan  4 06:02 hsetroot1.tcz
-rw-r--r--    1 root     root        143360 Jan  4 06:02 kmaps.tcz
-rw-r--r--    1 root     root         24576 Jan  4 06:02 libpci.tcz
-rw-r--r--    1 root     root        106496 Jan  4 06:02 make.tcz
-rw-r--r--    1 root     root        778240 Jan  4 06:02 mylocale.tcz
-rw-r--r--    1 root     root        172032 Jan  4 06:01 nano.tcz
-rw-r--r--    1 root     root        180224 Jan  4 06:01 nfs-utils.tcz
-rw-r--r--    1 root     root        225280 Jan  4 06:02 ntfs-3g.tcz
-rw-r--r--    1 root     root         81920 Jan  4 06:02 obconf.tcz
-rw-r--r--    1 root     root         12288 Jan  4 06:02 openbox-config.tcz
-rw-r--r--    1 root     root        266240 Jan  4 06:01 openbox.tcz
-rw-r--r--    1 root     root       1417216 Jan  4 06:01 openssh.tcz
-rw-r--r--    1 root     root        475136 Jan  4 06:02 python3.6-cryptography.tcz
-rw-r--r--    1 root     root         32768 Jan  4 06:02 rdesktop-keymaps.tcz
-rw-r--r--    1 root     root        135168 Jan  4 06:01 rdesktop.tcz
-rw-r--r--    1 root     root       2400256 Jan  4 06:02 tcl8.6.tcz
-rw-r--r--    1 root     root        913408 Jan  4 06:02 tk8.6.tcz
-rw-r--r--    1 root     root        102400 Jan  4 06:02 udev-extra.tcz
-rw-r--r--    1 root     root         36864 Jan  4 06:01 wbar.tcz
-rw-r--r--    1 root     root         45056 Jan  4 06:01 wireless_tools.tcz
-rw-r--r--    1 root     root        782336 Jan  4 06:02 wpa_supplicant-dbus.tcz
-rw-r--r--    1 root     root        679936 Jan  4 06:01 x11vnc.tcz
-rw-r--r--    1 root     root        823296 Jan  4 06:02 xf86-video-intel.tcz

Quote
What do these commands return:
Code: [Select]
ls -l /tmp/tce
total 0
drwxrwxr-x    2 tc       staff          820 Jan  4 06:03 optional/
-rw-rw-r--    1 tc       staff            0 Jan  4 06:01 xwbar.lst

Code: [Select]
ls -l /mnt/nfs/ws1/tce/
total 12
-rw-r--r--    1 root     staff         6288 Jan  4 06:30 mydata.tgz
-rw-rw-r--    1 tc       staff           73 Jan  4 06:26 onboot.lst
drwxrwsr-x    2 tc       staff           40 Jan  4 06:03 ondemand/
drwxrwsr-x    2 tc       staff         4460 Jan  4 06:26 optional/


Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #9 on: June 20, 2022, 02:46:23 AM »
those are extensions i downloades after booting cause i have gote some errors like:

Code: [Select]
nano /opt/.filetool.lst
nano: error while loading shared libraries: libmagic.so.1: cannot open shared object file: No such file or directory
Code: [Select]
ls -l /mnt/nfs/ws1/tce/optional/
total 60376
-rw-r--r--    1 tc       staff        40960 Jan  4 06:25 acl.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 acl.tcz.dep
-rw-r--r--    1 tc       staff           42 Jan  4 06:25 acl.tcz.md5.txt
-rw-r--r--    1 tc       staff     13242368 Jan  4 06:25 adwaita-icon-theme.tcz
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 adwaita-icon-theme.tcz.dep
-rw-r--r--    1 tc       staff           57 Jan  4 06:25 adwaita-icon-theme.tcz.md5.txt
-rw-r--r--    1 tc       staff        73728 Jan  4 06:25 at-spi2-atk.tcz
-rw-r--r--    1 tc       staff           25 Jan  4 06:25 at-spi2-atk.tcz.dep
-rw-r--r--    1 tc       staff           50 Jan  4 06:25 at-spi2-atk.tcz.md5.txt
-rw-r--r--    1 tc       staff       118784 Jan  4 06:25 at-spi2-core.tcz
-rw-r--r--    1 tc       staff           51 Jan  4 06:25 at-spi2-core.tcz.dep
-rw-r--r--    1 tc       staff           51 Jan  4 06:25 at-spi2-core.tcz.md5.txt
-rw-r--r--    1 tc       staff        57344 Jan  4 06:25 atk.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 atk.tcz.dep
-rw-r--r--    1 tc       staff           42 Jan  4 06:25 atk.tcz.md5.txt
-rw-r--r--    1 tc       staff        24576 Jan  4 06:25 attr.tcz
-rw-r--r--    1 tc       staff           43 Jan  4 06:25 attr.tcz.md5.txt
-rw-r--r--    1 tc       staff        28672 Jan  4 06:24 bzip2-lib.tcz
-rw-r--r--    1 tc       staff           48 Jan  4 06:24 bzip2-lib.tcz.md5.txt
-rw-r--r--    1 tc       staff       606208 Jan  4 06:25 cairo.tcz
-rw-r--r--    1 tc       staff           99 Jan  4 06:25 cairo.tcz.dep
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 cairo.tcz.md5.txt
-rw-r--r--    1 tc       staff       278528 Jan  4 06:25 dbus.tcz
-rw-r--r--    1 tc       staff           23 Jan  4 06:25 dbus.tcz.dep
-rw-r--r--    1 tc       staff           43 Jan  4 06:25 dbus.tcz.md5.txt
-rw-r--r--    1 tc       staff      1175552 Jan  4 06:25 elogind.tcz
-rw-r--r--    1 tc       staff           19 Jan  4 06:25 elogind.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 elogind.tcz.md5.txt
-rw-r--r--    1 tc       staff        81920 Jan  4 06:25 expat2.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 expat2.tcz.md5.txt
-rw-r--r--    1 tc       staff       544768 Jan  4 06:24 file.tcz
-rw-r--r--    1 tc       staff           26 Jan  4 06:24 file.tcz.dep
-rw-r--r--    1 tc       staff           43 Jan  4 06:24 file.tcz.md5.txt
-rw-r--r--    1 tc       staff       245760 Jan  4 06:21 flac.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:21 flac.tcz.dep
-rw-r--r--    1 tc       staff           43 Jan  4 06:21 flac.tcz.md5.txt
-rw-r--r--    1 tc       staff       176128 Jan  4 06:25 fontconfig.tcz
-rw-r--r--    1 tc       staff           24 Jan  4 06:25 fontconfig.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 fontconfig.tcz.md5.txt
-rw-r--r--    1 tc       staff       368640 Jan  4 06:25 freetype.tcz
-rw-r--r--    1 tc       staff           38 Jan  4 06:25 freetype.tcz.dep
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 freetype.tcz.md5.txt
-rw-r--r--    1 tc       staff        28672 Jan  4 06:25 fribidi.tcz
-rw-r--r--    1 tc       staff           10 Jan  4 06:25 fribidi.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 fribidi.tcz.md5.txt
-rw-r--r--    1 tc       staff       208896 Jan  4 06:25 gdk-pixbuf2.tcz
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 gdk-pixbuf2.tcz.dep
-rw-r--r--    1 tc       staff           50 Jan  4 06:25 gdk-pixbuf2.tcz.md5.txt
-rw-r--r--    1 tc       staff      1519616 Jan  4 06:25 glib2.tcz
-rw-r--r--    1 tc       staff           20 Jan  4 06:25 glib2.tcz.dep
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 glib2.tcz.md5.txt
-rw-r--r--    1 tc       staff       249856 Jan  4 06:25 gmp.tcz
-rw-r--r--    1 tc       staff           42 Jan  4 06:25 gmp.tcz.md5.txt
-rw-r--r--    1 tc       staff      1241088 Jan  4 06:25 gnutls35.tcz
-rw-r--r--    1 tc       staff           36 Jan  4 06:25 gnutls35.tcz.dep
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 gnutls35.tcz.md5.txt
-rw-r--r--    1 tc       staff        69632 Jan  4 06:25 graphite.tcz
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 graphite.tcz.md5.txt
-rw-r--r--    1 tc       staff      3895296 Jan  4 06:25 gtk3.tcz
-rw-r--r--    1 tc       staff          188 Jan  4 06:25 gtk3.tcz.dep
-rw-r--r--    1 tc       staff           43 Jan  4 06:25 gtk3.tcz.md5.txt
-rw-r--r--    1 tc       staff       593920 Jan  4 06:25 harfbuzz.tcz
-rw-r--r--    1 tc       staff           23 Jan  4 06:25 harfbuzz.tcz.dep
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 harfbuzz.tcz.md5.txt
-rw-r--r--    1 tc       staff         8192 Jan  4 06:25 hicolor-icon-theme.tcz
-rw-r--r--    1 tc       staff           57 Jan  4 06:25 hicolor-icon-theme.tcz.md5.txt
-rw-r--r--    1 tc       staff     14471168 Jan  4 06:25 icu67.tcz
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 icu67.tcz.md5.txt
-rw-r--r--    1 tc       staff       122880 Jan  4 06:25 libEGL.tcz
-rw-r--r--    1 tc       staff           22 Jan  4 06:25 libEGL.tcz.dep
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libEGL.tcz.md5.txt
-rw-r--r--    1 tc       staff       188416 Jan  4 06:25 libGL.tcz
-rw-r--r--    1 tc       staff           58 Jan  4 06:25 libGL.tcz.dep
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 libGL.tcz.md5.txt
-rw-r--r--    1 tc       staff        12288 Jan  4 06:25 libGLESv2.tcz
-rw-r--r--    1 tc       staff           10 Jan  4 06:25 libGLESv2.tcz.dep
-rw-r--r--    1 tc       staff           48 Jan  4 06:25 libGLESv2.tcz.md5.txt
-rw-r--r--    1 tc       staff        40960 Jan  4 06:25 libICE.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libICE.tcz.md5.txt
-rw-r--r--    1 tc       staff        16384 Jan  4 06:25 libSM.tcz
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 libSM.tcz.md5.txt
-rw-r--r--    1 tc       staff       958464 Jan  4 06:25 libX11.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 libX11.tcz.dep
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libX11.tcz.md5.txt
-rw-r--r--    1 tc       staff         8192 Jan  4 06:25 libXau.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libXau.tcz.md5.txt
-rw-r--r--    1 tc       staff         4096 Jan  4 06:25 libXcomposite.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 libXcomposite.tcz.dep
-rw-r--r--    1 tc       staff           52 Jan  4 06:25 libXcomposite.tcz.md5.txt
-rw-r--r--    1 tc       staff        20480 Jan  4 06:25 libXcursor.tcz
-rw-r--r--    1 tc       staff           29 Jan  4 06:25 libXcursor.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 libXcursor.tcz.md5.txt
-rw-r--r--    1 tc       staff         4096 Jan  4 06:25 libXdamage.tcz
-rw-r--r--    1 tc       staff           14 Jan  4 06:25 libXdamage.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 libXdamage.tcz.md5.txt
-rw-r--r--    1 tc       staff        12288 Jan  4 06:25 libXdmcp.tcz
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 libXdmcp.tcz.md5.txt
-rw-r--r--    1 tc       staff        28672 Jan  4 06:25 libXext.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 libXext.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 libXext.tcz.md5.txt
-rw-r--r--    1 tc       staff         8192 Jan  4 06:25 libXfixes.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 libXfixes.tcz.dep
-rw-r--r--    1 tc       staff           48 Jan  4 06:25 libXfixes.tcz.md5.txt
-rw-r--r--    1 tc       staff       102400 Jan  4 06:26 libXfont2.tcz
-rw-r--r--    1 tc       staff           28 Jan  4 06:26 libXfont2.tcz.dep
-rw-r--r--    1 tc       staff           48 Jan  4 06:26 libXfont2.tcz.md5.txt
-rw-r--r--    1 tc       staff        36864 Jan  4 06:25 libXft.tcz
-rw-r--r--    1 tc       staff           43 Jan  4 06:25 libXft.tcz.dep
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libXft.tcz.md5.txt
-rw-r--r--    1 tc       staff        28672 Jan  4 06:25 libXi.tcz
-rw-r--r--    1 tc       staff           12 Jan  4 06:25 libXi.tcz.dep
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 libXi.tcz.md5.txt
-rw-r--r--    1 tc       staff         4096 Jan  4 06:25 libXinerama.tcz
-rw-r--r--    1 tc       staff           12 Jan  4 06:25 libXinerama.tcz.dep
-rw-r--r--    1 tc       staff           50 Jan  4 06:25 libXinerama.tcz.md5.txt
-rw-r--r--    1 tc       staff        20480 Jan  4 06:25 libXrandr.tcz
-rw-r--r--    1 tc       staff           27 Jan  4 06:25 libXrandr.tcz.dep
-rw-r--r--    1 tc       staff           48 Jan  4 06:25 libXrandr.tcz.md5.txt
-rw-r--r--    1 tc       staff        20480 Jan  4 06:25 libXrender.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:25 libXrender.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 libXrender.tcz.md5.txt
-rw-r--r--    1 tc       staff         8192 Jan  4 06:25 libXxf86vm.tcz
-rw-r--r--    1 tc       staff           12 Jan  4 06:25 libXxf86vm.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 libXxf86vm.tcz.md5.txt
-rw-r--r--    1 tc       staff        24576 Jan  4 06:25 libcap.tcz
-rw-r--r--    1 tc       staff            9 Jan  4 06:25 libcap.tcz.dep
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libcap.tcz.md5.txt
-rw-r--r--    1 tc       staff       151552 Jan  4 06:25 libdrm.tcz
-rw-r--r--    1 tc       staff           30 Jan  4 06:25 libdrm.tcz.dep
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libdrm.tcz.md5.txt
-rw-r--r--    1 tc       staff       307200 Jan  4 06:25 libepoxy.tcz
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 libepoxy.tcz.md5.txt
-rw-r--r--    1 tc       staff        16384 Jan  4 06:25 libffi.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libffi.tcz.md5.txt
-rw-r--r--    1 tc       staff        12288 Jan  4 06:26 libfontenc.tcz
-rw-r--r--    1 tc       staff           49 Jan  4 06:26 libfontenc.tcz.md5.txt
-rw-r--r--    1 tc       staff        73728 Jan  4 06:25 libidn2.tcz
-rw-r--r--    1 tc       staff           30 Jan  4 06:25 libidn2.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 libidn2.tcz.md5.txt
-rw-r--r--    1 tc       staff       315392 Jan  4 06:25 libjpeg-turbo.tcz
-rw-r--r--    1 tc       staff           52 Jan  4 06:25 libjpeg-turbo.tcz.md5.txt
-rw-r--r--    1 tc       staff        77824 Jan  4 06:24 liblzma.tcz
-rw-r--r--    1 tc       staff           46 Jan  4 06:24 liblzma.tcz.md5.txt
-rw-r--r--    1 tc       staff        12288 Jan  4 06:21 libogg.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:21 libogg.tcz.md5.txt
-rw-r--r--    1 tc       staff        16384 Jan  4 06:25 libpciaccess.tcz
-rw-r--r--    1 tc       staff           51 Jan  4 06:25 libpciaccess.tcz.md5.txt
-rw-r--r--    1 tc       staff       102400 Jan  4 06:25 libpng.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libpng.tcz.md5.txt
-rw-r--r--    1 tc       staff      7294976 Jan  4 06:25 librsvg.tcz
-rw-r--r--    1 tc       staff           26 Jan  4 06:25 librsvg.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 librsvg.tcz.md5.txt
-rw-r--r--    1 tc       staff       172032 Jan  4 06:21 libsndfile.tcz
-rw-r--r--    1 tc       staff           23 Jan  4 06:21 libsndfile.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:21 libsndfile.tcz.md5.txt
-rw-r--r--    1 tc       staff        49152 Jan  4 06:25 libtasn1-4.tcz
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 libtasn1-4.tcz.md5.txt
-rw-r--r--    1 tc       staff       188416 Jan  4 06:25 libtiff.tcz
-rw-r--r--    1 tc       staff           42 Jan  4 06:25 libtiff.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 libtiff.tcz.md5.txt
-rw-r--r--    1 tc       staff       598016 Jan  4 06:25 libunistring.tcz
-rw-r--r--    1 tc       staff           51 Jan  4 06:25 libunistring.tcz.md5.txt
-rw-r--r--    1 tc       staff       217088 Jan  4 06:21 libvorbis.tcz
-rw-r--r--    1 tc       staff           11 Jan  4 06:21 libvorbis.tcz.dep
-rw-r--r--    1 tc       staff           48 Jan  4 06:21 libvorbis.tcz.md5.txt
-rw-r--r--    1 tc       staff       393216 Jan  4 06:25 libxcb.tcz
-rw-r--r--    1 tc       staff           24 Jan  4 06:25 libxcb.tcz.dep
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 libxcb.tcz.md5.txt
-rw-r--r--    1 tc       staff         8192 Jan  4 06:26 libxcvt.tcz
-rw-r--r--    1 tc       staff           46 Jan  4 06:26 libxcvt.tcz.md5.txt
-rw-r--r--    1 tc       staff       122880 Jan  4 06:25 libxkbcommon.tcz
-rw-r--r--    1 tc       staff           32 Jan  4 06:25 libxkbcommon.tcz.dep
-rw-r--r--    1 tc       staff           51 Jan  4 06:25 libxkbcommon.tcz.md5.txt
-rw-r--r--    1 tc       staff       614400 Jan  4 06:25 libxml2.tcz
-rw-r--r--    1 tc       staff           12 Jan  4 06:25 libxml2.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 libxml2.tcz.md5.txt
-rw-r--r--    1 tc       staff         4096 Jan  4 06:25 libxshmfence.tcz
-rw-r--r--    1 tc       staff           51 Jan  4 06:25 libxshmfence.tcz.md5.txt
-rw-r--r--    1 tc       staff       315392 Jan  4 06:25 libzstd.tcz
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 libzstd.tcz.md5.txt
-rw-r--r--    1 tc       staff        49152 Jan  4 06:25 lxterminal.tcz
-rw-r--r--    1 tc       staff           63 Jan  4 06:25 lxterminal.tcz.dep
-rw-r--r--    1 tc       staff           49 Jan  4 06:25 lxterminal.tcz.md5.txt
-rw-r--r--    1 tc       staff       258048 Jan  4 06:25 ncursesw.tcz
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 ncursesw.tcz.md5.txt
-rw-r--r--    1 tc       staff       278528 Jan  4 06:25 nettle3.tcz
-rw-r--r--    1 tc       staff            8 Jan  4 06:25 nettle3.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 nettle3.tcz.md5.txt
-rw-r--r--    1 tc       staff      1814528 Jan  4 06:11 openssl-1.1.1.tcz
-rw-r--r--    1 tc       staff           52 Jan  4 06:11 openssl-1.1.1.tcz.md5.txt
-rw-r--r--    1 tc       staff       733184 Jan  4 06:25 p11-kit.tcz
-rw-r--r--    1 tc       staff           26 Jan  4 06:25 p11-kit.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 p11-kit.tcz.md5.txt
-rw-r--r--    1 tc       staff       270336 Jan  4 06:25 pango.tcz
-rw-r--r--    1 tc       staff           33 Jan  4 06:25 pango.tcz.dep
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 pango.tcz.md5.txt
-rw-r--r--    1 tc       staff       319488 Jan  4 06:25 pcre.tcz
-rw-r--r--    1 tc       staff           43 Jan  4 06:25 pcre.tcz.md5.txt
-rw-r--r--    1 tc       staff       348160 Jan  4 06:25 pcre2.tcz
-rw-r--r--    1 tc       staff           44 Jan  4 06:25 pcre2.tcz.md5.txt
-rw-r--r--    1 tc       staff       299008 Jan  4 06:25 pixman.tcz
-rw-r--r--    1 tc       staff           45 Jan  4 06:25 pixman.tcz.md5.txt
-rw-r--r--    1 tc       staff       626688 Jan  4 06:25 shared-mime-info.tcz
-rw-r--r--    1 tc       staff           22 Jan  4 06:25 shared-mime-info.tcz.dep
-rw-r--r--    1 tc       staff           55 Jan  4 06:25 shared-mime-info.tcz.md5.txt
-rw-r--r--    1 tc       staff        24576 Jan  4 06:25 udev-lib.tcz
-rw-r--r--    1 tc       staff           47 Jan  4 06:25 udev-lib.tcz.md5.txt
-rw-r--r--    1 tc       staff       229376 Jan  4 06:25 vte.tcz
-rw-r--r--    1 tc       staff           42 Jan  4 06:25 vte.tcz.dep
-rw-r--r--    1 tc       staff           42 Jan  4 06:25 vte.tcz.md5.txt
-rw-r--r--    1 tc       staff       172032 Jan  4 06:25 wayland-protocols.tcz
-rw-r--r--    1 tc       staff           12 Jan  4 06:25 wayland-protocols.tcz.dep
-rw-r--r--    1 tc       staff           56 Jan  4 06:25 wayland-protocols.tcz.md5.txt
-rw-r--r--    1 tc       staff       126976 Jan  4 06:25 wayland.tcz
-rw-r--r--    1 tc       staff           34 Jan  4 06:25 wayland.tcz.dep
-rw-r--r--    1 tc       staff           46 Jan  4 06:25 wayland.tcz.md5.txt
-rw-r--r--    1 tc       staff       843776 Jan  4 06:25 xkeyboard-config.tcz
-rw-r--r--    1 tc       staff           55 Jan  4 06:25 xkeyboard-config.tcz.md5.txt
-rw-r--r--    1 tc       staff      2785280 Jan  4 06:26 xorg-server.tcz
-rw-r--r--    1 tc       staff           90 Jan  4 06:26 xorg-server.tcz.dep
-rw-r--r--    1 tc       staff           50 Jan  4 06:26 xorg-server.tcz.md5.txt



Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #10 on: June 20, 2022, 02:47:21 AM »
Quote
What do these commands return:
Code: [Select]
ls -l /usr/local/tce.installed
total 0
-rw-r--r--    1 tc       staff            0 Jan  4 06:01 Xorg-7.7
-rw-r--r--    1 tc       staff            0 Jan  4 06:01 Xorg-7.7-dev
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 acl
lrwxrwxrwx    1 tc       staff           47 Jan  4 06:02 acpid -> /tmp/tcloop/acpid/usr/local/tce.installed/acpid
lrwxrwxrwx    1 root     root            73 Jan  4 06:25 adwaita-icon-theme -> /tmp/tcloop/adwaita-icon-theme/usr/local/tce.installed/adwaita-icon-theme
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 at-spi2-atk
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 at-spi2-core
lrwxrwxrwx    1 tc       staff           47 Jan  4 06:01 aterm -> /tmp/tcloop/aterm/usr/local/tce.installed/aterm
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 atk
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 attr
lrwxrwxrwx    1 tc       staff           45 Jan  4 06:02 bash -> /tmp/tcloop/bash/usr/local/tce.installed/bash
-rw-r--r--    1 tc       staff            0 Jan  4 06:24 bzip2-lib
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 cairo
lrwxrwxrwx    1 tc       staff           47 Jan  4 06:02 conky -> /tmp/tcloop/conky/usr/local/tce.installed/conky
lrwxrwxrwx    1 root     root            45 Jan  4 06:25 dbus -> /tmp/tcloop/dbus/usr/local/tce.installed/dbus
lrwxrwxrwx    1 root     root            51 Jan  4 06:25 elogind -> /tmp/tcloop/elogind/usr/local/tce.installed/elogind
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 expat2
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 fbv
lrwxrwxrwx    1 root     root            45 Jan  4 06:24 file -> /tmp/tcloop/file/usr/local/tce.installed/file
lrwxrwxrwx    1 tc       staff           51 Jan  4 06:02 firefox -> /tmp/tcloop/firefox/usr/local/tce.installed/firefox
lrwxrwxrwx    1 tc       staff           69 Jan  4 06:01 firmware-iwl9000 -> /tmp/tcloop/firmware-iwl9000/usr/local/tce.installed/firmware-iwl9000
lrwxrwxrwx    1 tc       staff           71 Jan  4 06:02 firmware-iwlax20x -> /tmp/tcloop/firmware-iwlax20x/usr/local/tce.installed/firmware-iwlax20x
lrwxrwxrwx    1 tc       staff           69 Jan  4 06:02 firmware-iwlwifi -> /tmp/tcloop/firmware-iwlwifi/usr/local/tce.installed/firmware-iwlwifi
lrwxrwxrwx    1 tc       staff           69 Jan  4 06:02 firmware-rtl_nic -> /tmp/tcloop/firmware-rtl_nic/usr/local/tce.installed/firmware-rtl_nic
-rw-r--r--    1 tc       staff            0 Jan  4 06:21 flac
lrwxrwxrwx    1 root     root            57 Jan  4 06:25 fontconfig -> /tmp/tcloop/fontconfig/usr/local/tce.installed/fontconfig
-rw-r--r--    1 tc       staff            0 Jan  4 06:01 freerdp
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 freetype
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 fribidi
lrwxrwxrwx    1 root     root            59 Jan  4 06:25 gdk-pixbuf2 -> /tmp/tcloop/gdk-pixbuf2/usr/local/tce.installed/gdk-pixbuf2
lrwxrwxrwx    1 tc       staff           55 Jan  4 06:01 getlocale -> /tmp/tcloop/getlocale/usr/local/tce.installed/getlocale
-rw-r--r--    1 tc       staff            0 Jan  4 06:03 giflib7
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 glib2
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 gmp
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 gnutls35
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 graphite
-rw-r--r--    1 tc       staff            0 Jan  4 06:03 grub2-multi
lrwxrwxrwx    1 root     root            45 Jan  4 06:25 gtk3 -> /tmp/tcloop/gtk3/usr/local/tce.installed/gtk3
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 harfbuzz
lrwxrwxrwx    1 root     root            73 Jan  4 06:25 hicolor-icon-theme -> /tmp/tcloop/hicolor-icon-theme/usr/local/tce.installed/hicolor-icon-theme
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 hsetroot1
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 icu67
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 kmaps
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libEGL
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libGL
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libGLESv2
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libICE
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libSM
lrwxrwxrwx    1 root     root            49 Jan  4 06:25 libX11 -> /tmp/tcloop/libX11/usr/local/tce.installed/libX11
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXau
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXcomposite
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXcursor
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXdamage
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXdmcp
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXext
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXfixes
-rw-r--r--    1 tc       staff            0 Jan  4 06:26 libXfont2
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXft
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXi
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXinerama
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXrandr
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXrender
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libXxf86vm
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libcap
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libdrm
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libepoxy
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libffi
-rw-r--r--    1 tc       staff            0 Jan  4 06:26 libfontenc
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libidn2
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libjpeg-turbo
-rw-r--r--    1 tc       staff            0 Jan  4 06:24 liblzma
-rw-r--r--    1 tc       staff            0 Jan  4 06:21 libogg
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 libpci
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libpciaccess
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libpng
lrwxrwxrwx    1 root     root            51 Jan  4 06:25 librsvg -> /tmp/tcloop/librsvg/usr/local/tce.installed/librsvg
-rw-r--r--    1 tc       staff            0 Jan  4 06:21 libsndfile
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libtasn1-4
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libtiff
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libunistring
-rw-r--r--    1 tc       staff            0 Jan  4 06:21 libvorbis
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libxcb
-rw-r--r--    1 tc       staff            0 Jan  4 06:26 libxcvt
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libxkbcommon
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libxml2
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libxshmfence
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 libzstd
lrwxrwxrwx    1 root     root            57 Jan  4 06:25 lxterminal -> /tmp/tcloop/lxterminal/usr/local/tce.installed/lxterminal
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 make
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 mylocale
lrwxrwxrwx    1 tc       staff           45 Jan  4 06:01 nano -> /tmp/tcloop/nano/usr/local/tce.installed/nano
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 ncursesw
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 nettle3
lrwxrwxrwx    1 tc       staff           55 Jan  4 06:01 nfs-utils -> /tmp/tcloop/nfs-utils/usr/local/tce.installed/nfs-utils
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 ntfs-3g
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 obconf
lrwxrwxrwx    1 tc       staff           51 Jan  4 06:01 openbox -> /tmp/tcloop/openbox/usr/local/tce.installed/openbox
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 openbox-config
lrwxrwxrwx    1 tc       staff           51 Jan  4 06:01 openssh -> /tmp/tcloop/openssh/usr/local/tce.installed/openssh
lrwxrwxrwx    1 root     root            63 Jan  4 06:11 openssl-1.1.1 -> /tmp/tcloop/openssl-1.1.1/usr/local/tce.installed/openssl-1.1.1
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 p11-kit
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 pango
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 pcre
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 pcre2
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 pixman
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 python3.6-cryptography
-rw-r--r--    1 tc       staff            0 Jan  4 06:01 rdesktop
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 rdesktop-keymaps
lrwxrwxrwx    1 root     root            69 Jan  4 06:25 shared-mime-info -> /tmp/tcloop/shared-mime-info/usr/local/tce.installed/shared-mime-info
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 tcl8.6
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 tk8.6
lrwxrwxrwx    1 tc       staff           57 Jan  4 06:02 udev-extra -> /tmp/tcloop/udev-extra/usr/local/tce.installed/udev-extra
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 udev-lib
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 vte
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 wayland
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 wayland-protocols
lrwxrwxrwx    1 tc       staff           45 Jan  4 06:01 wbar -> /tmp/tcloop/wbar/usr/local/tce.installed/wbar
-rw-r--r--    1 tc       staff            0 Jan  4 06:01 wireless_tools
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 wpa_supplicant-dbus
-rw-r--r--    1 tc       staff            0 Jan  4 06:01 x11vnc
-rw-r--r--    1 tc       staff            0 Jan  4 06:02 xf86-video-intel
-rw-r--r--    1 tc       staff            0 Jan  4 06:25 xkeyboard-config
lrwxrwxrwx    1 root     root            59 Jan  4 06:26 xorg-server -> /tmp/tcloop/xorg-server/usr/local/tce.installed/xorg-server



Code: [Select]
readlink /etc/sysconfig/tcedir
/mnt/nfs/ws1/tce

Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #11 on: June 20, 2022, 02:48:00 AM »
So the Problems i have now are:

  • X doesn't start
  • how do i make mydata.tar available so i don't have to do everything again ?
  • when i run filetool.sh -b, where does it save the backup files? and how to restore it everytime i reboot ?

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: PXE Boot
« Reply #12 on: June 20, 2022, 02:53:32 AM »
so i was wrong! All extensions in the List are loaded but they are not in the same location as those i install after booting (/mnt/nfs/ws1/tce/optional/)

You appear to be missing the dep and md5sum files for the extensions - *tcz.dep and *tcz.md5.txt

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: PXE Boot
« Reply #13 on: June 20, 2022, 02:59:19 AM »
X doesn't start
Try "Xorg -nolisten tcp" from the console prompt to troubleshoot

Quote
when i run filetool.sh -b, where does it save the backup files? and how to restore it everytime i reboot ?
By default it is saved in /etc/sysconfig/tcedir and will be restored on boot.

Offline Rabie

  • Sr. Member
  • ****
  • Posts: 272
Re: PXE Boot
« Reply #14 on: June 20, 2022, 03:10:24 AM »
Hi Juanito,


You appear to be missing the dep and md5sum files for the extensions - *tcz.dep and *tcz.md5.txt

isn't nfs.lst just the nfs list for listing the extensions i need on boot like the file "onboot.lst" take just the tcz files ?

And in the directory optional are all extensions with all  *tcz.dep and *tcz.md5.txt ?

Because i have it like that:
Code: [Select]
#cat nfs/ws1/nfs.lst
#nfs/ws1/tce/optional/nfs-utils.tcz
#nfs/ws1/tce/optional/getlocale.tcz
#nfs/ws1/tce/optional/nano.tcz
#nfs/ws1/tce/optional/Xorg-7.7.tcz
#nfs/ws1/tce/optional/Xorg-7.7-dev.tcz
#nfs/ws1/tce/optional/wbar.tcz
#nfs/ws1/tce/optional/openbox.tcz
#nfs/ws1/tce/optional/aterm.tcz
#nfs/ws1/tce/optional/openssh.tcz
#nfs/ws1/tce/optional/x11vnc.tcz
#nfs/ws1/tce/optional/rdesktop.tcz
#nfs/ws1/tce/optional/freerdp.tcz
#nfs/ws1/tce/optional/wireless_tools.tcz
#nfs/ws1/tce/optional/firmware-iwl9000.tcz
#nfs/ws1/tce/optional/firmware-iwlax20x.tcz
#nfs/ws1/tce/optional/firmware-iwlwifi.tcz
#nfs/ws1/tce/optional/firmware-rtl_nic.tcz
#nfs/ws1/tce/optional/bash.tcz
#nfs/ws1/tce/optional/mylocale.tcz
#nfs/ws1/tce/optional/kmaps.tcz
#nfs/ws1/tce/optional/tcl8.6.tcz
#nfs/ws1/tce/optional/tk8.6.tcz
#nfs/ws1/tce/optional/wpa_supplicant-dbus.tcz
#nfs/ws1/tce/optional/openbox-config.tcz
#nfs/ws1/tce/optional/obconf.tcz
#nfs/ws1/tce/optional/conky.tcz
#nfs/ws1/tce/optional/rdesktop-keymaps.tcz
#nfs/ws1/tce/optional/make.tcz
#nfs/ws1/tce/optional/xf86-video-intel.tcz
#nfs/ws1/tce/optional/acpid.tcz
#nfs/ws1/tce/optional/fbv.tcz
#nfs/ws1/tce/optional/python3.6-cryptography.tcz
#nfs/ws1/tce/optional/firefox.tcz
#nfs/ws1/tce/optional/libpci.tcz
#nfs/ws1/tce/optional/ntfs-3g.tcz
#nfs/ws1/tce/optional/udev-extra.tcz
#nfs/ws1/tce/optional/hsetroot1.tcz
#nfs/ws1/tce/optional/grub2-multi.tcz
#nfs/ws1/tce/optional/giflib7.tcz

and all *tcz.dep and *tcz.md5.txt goes in nfs/ws1/tce/optional/ like:
Code: [Select]
ls -al nfs/ws1/tce/optional/
insgesamt 431360
drwxr-xr-x 3 root root     36864 16. Jun 16:08 .
drwxr-xr-x 5 root root      4096 20. Jun 11:55 ..
-rw-r--r-- 1 root root     40960  8. Jun 11:14 acl.tcz
-rw-r--r-- 1 root root        11  8. Jun 11:14 acl.tcz.dep
-rw-r--r-- 1 root root        42  8. Jun 11:14 acl.tcz.md5.txt
-rw-r--r-- 1 root root     36864  8. Jun 11:14 acpid.tcz
-rw-r--r-- 1 root root        44  8. Jun 11:14 acpid.tcz.md5.txt
-rw-r--r-- 1 root root  13242368  8. Jun 11:14 adwaita-icon-theme.tcz
-rw-r--r-- 1 root root        44  8. Jun 11:14 adwaita-icon-theme.tcz.dep
-rw-r--r-- 1 root root        57  8. Jun 11:14 adwaita-icon-theme.tcz.md5.txt
-rw-r--r-- 1 root root     65536  8. Jun 11:14 aterm.tcz
-rw-r--r-- 1 root root        33  8. Jun 11:14 aterm.tcz.dep
-rw-r--r-- 1 root root        44  8. Jun 11:14 aterm.tcz.md5.txt
-rw-r--r-- 1 root root     57344  8. Jun 11:14 atk.tcz
-rw-r--r-- 1 root root        11  8. Jun 11:14 atk.tcz.dep
-rw-r--r-- 1 root root        42  8. Jun 11:14 atk.tcz.md5.txt
-rw-r--r-- 1 root root     73728  8. Jun 11:14 at-spi2-atk.tcz
-rw-r--r-- 1 root root        25  8. Jun 11:14 at-spi2-atk.tcz.dep
-rw-r--r-- 1 root root        50  8. Jun 11:14 at-spi2-atk.tcz.md5.txt
etc..

again # to prevent Forum from giving Error