WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Allow TCE & CDE on same partition  (Read 2439 times)

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Allow TCE & CDE on same partition
« on: January 14, 2012, 10:55:31 PM »
4.2.1 doesn't allow to have both CDE and TCE on same partition. While it is logical on read-only media as CD, it is not using r/w partions. For example USB setup with single partition (doesn't matter what type, FAT or native LINUX) logically would have  a /tce dir and a /cde with core extensions. Of course it is up to the user not mess up /cde but same is valid for any other part of the system, so not a strong argument.

Having /cde & /tce on same portion would eliminate manual tweeking of installation, would make operation cleaner and would be more easy to understand for ordinary users and would make installation less complex.

Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."

Offline yoshi314

  • Full Member
  • ***
  • Posts: 135
Re: Allow TCE & CDE on same partition
« Reply #1 on: January 17, 2012, 12:15:47 AM »
afaik cde directory is only scanned for on cdrom devices or hybrid usb sticks, which makes it a bit less useful than expected.

you can have both on one partition, but as long as that partition doesn't fit the requirements, cde dir will be ignored.

Code: [Select]
# Finally check for CD Extensions if requested
if [ "$CDE" -a -s /etc/sysconfig/cdroms ]; then
        for DEV in `cat /etc/sysconfig/cdroms`; do
                process_CD
        done

and sysconfig/cdroms is constructed from /proc/sys/dev/cdrom/info
« Last Edit: January 17, 2012, 12:18:15 AM by yoshi314 »

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: Allow TCE & CDE on same partition
« Reply #2 on: January 17, 2012, 01:01:24 AM »
What is Hybrid USB stick?
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10982
Re: Allow TCE & CDE on same partition
« Reply #3 on: January 17, 2012, 05:07:42 AM »
A direct dd of the coreplus iso to an usb stick.
The only barriers that can stop you are the ones you create yourself.

Offline yoshi314

  • Full Member
  • ***
  • Posts: 135
Re: Allow TCE & CDE on same partition
« Reply #4 on: January 18, 2012, 04:16:11 AM »
What is Hybrid USB stick?
the isohybrid tool from syslinux package can alter iso file so that it will boot from usb after copying it with dd onto the device.

most distributions offer their iso images preprocessed in this way. and i think core iso images are already preprocessed in the same way.

a bit of a mental shortcut on my end, sorry.