Skip to main content

Boot acronis media with no gui

Thread needs solution

Hi ! I want boot acronis media with no gui and auto start script in acronismedia.iso linux In windows iso i can change starnet.cmd Pls help me change in linux Thanks you

0 Users found this helpful

Hi

Please, read https://www.acronis.com/en-us/support/documentation/AcronisBackup_12.5/#39737.html

To start without GUI, use the following functions in the script (amend them if needed):

 

ACRO_PROD="/bin/product"

 

is_product_started()
{
    acrocmd list disks > /dev/null 2>&1
    return $?
}

start_product_in_background()
{
    if is_product_started; then return 0; fi
    chvt 3   
   
    ($ACRO_PROD > /tmp/product.log 2>&1 &)
    is_product_started
    until [ "$?" = "0" ]
    do
        sleep 1
        is_product_started
    done
    chvt 1
    echo  'The product was started in background'
}

 

 

 

frestogaslorastaswastavewroviwroclolacorashibushurutraciwrubrishabenichikucrijorejenufrilomuwrigaslowrikejawrachosleratiswurelaseriprouobrunoviswosuthitribrepakotritopislivadrauibretisetewrapenuwrapi
Posts: 0
Comments: 2016

Hello Tung,

welcome to Acronis forums!

What is the reason why you do not need GUI on Bootable Media? (e.g. in order to be able to select a display mode for the bootable agent each time the media starts, type: vga=ask)

For a list of parameters, see Kernel parameters.

Please also read the following chapter on how to use Custom scripts in Bootable Media.