Jump to content

PNETLab: skip setup wizard

From Wiki
Revision as of 22:29, 21 February 2024 by Kangmus (talk | contribs) (Created page with "How to disable setup wizard on login 1. Edit the setup wizard script: vim /opt/ovf/ovfconfig.sh 2. Add this after the first line: # If .skipovfconfig exists in home, skip the OVF config script if -e ~/.skipovfconfig ; then     echo "Skipping OVF config script"     exit fi 3. Create the .skipovfconfig file: cd ~ touch .skipovfconfig Next time you login, you shouldn't get the setup wizard popping up")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

How to disable setup wizard on login 1. Edit the setup wizard script:

vim /opt/ovf/ovfconfig.sh

2. Add this after the first line:

# If .skipovfconfig exists in home, skip the OVF config script
if -e ~/.skipovfconfig ; then
    echo "Skipping OVF config script"
    exit
fi

3. Create the .skipovfconfig file:

cd ~
touch .skipovfconfig

Next time you login, you shouldn't get the setup wizard popping up