Help for this page

Select Code to Download


  1. or download this
    #
    # Include Files
    ...
    w
    
    ####
    
  2. or download this
    $cmd = 'fdisk -c'.' '.$device.' n p 1 1 +G t 83 w';
    # this displays fdisk usage error
    
  3. or download this
    $cmd = 'fdisk -c'.' '.$device;
    system $cmd;
    system " n p 1 1 +G t 83 w";
    ## this however enters the fdisk prompt and waits for the above inputs
    + !!