Pixel <[EMAIL PROTECTED]> writes:

> "Hugo Rabson" <[EMAIL PROTECTED]> writes:
> 
> > It appears that Air's installer (or, more likely, one of the 3rd-party tools
> > on which it relies) cannot format DOS partitions
> 
> i'll test to see where the pb is.
> 
> > /usr/bin/perl-install/Xconfigurator.pm at line 824.
> > * warning: undefined subroutine &main:: called at line
> > /usr/bin/perl-install/Xconfigurator.pm at line 824.
> >    ...propagated at /usr/bin/perl-install/Xconfigurator.pm line 825.
> 
> i must have broken something :(
> 
> i'll test to see what is the problem.

i've just tested with success :)

i didn't put any

        'card' => {
                    'default_depth' => 16,
                    'resolution_wanted' => '1024x768'
                  }

though, going to retest with it.

> >        'partitioning' => {
> >                            'clearall' => '0',
> >                            'autoformat' => '0',
> >                            'eraseBadPartitions' => '0',
> >                            'auto_allocate' => '0'
> >                          },
> 
> you need to use clearall => 1 if you don't have enough room for creating the
> new directories.
> 
> for the moment, you can't use already created partitions, though it should quite
> easy to add that

silly me, you already can using manualFstab :

'manualFstab' => [
                   {
                     'device' => '192.168.1.9:/export',
                     'mntpoint' => '/mnt/nfs',
                     'type' => 'nfs',
                     'options' => 'noauto,ro,nosuid,rsize=8192,wsize=8192'
                   }
                 ],

which should work nicely with devices : 

'manualFstab' => [
                   {
                     'device' => '/dev/hda1',
                     'mntpoint' => '/usr',
                     'type' => 'ext2,
                     'options' => 'default'
                   }
                 ],

Reply via email to