1827286 Members
2115 Online
109717 Solutions
New Discussion

Suse text mode install

 
SOLVED
Go to solution
Jean-Yves Picard
Trusted Contributor

Suse text mode install

Hello,

short version:
How do I do a automated text mode install for suse ?

long version:
I am automating installation of suse. I generate bootable iso (or partition), with a commande line kernel that start the installation.
commande line look like

label $servername
kernel linux
append initrd=initrd splash=silent hostip=$IP netmask=255.255.252.0 gateway=$gw install=nfs://$SERVERFTP/stuff/disc.iso highres=off autoyast=http://$SERVERFTP/autoinst/$servername.xml

(variable are resolved of course with correct values).

The problem is that installation is always in graphic mode and I would like to make a text install.

Is there any flag I can use ?
I have tried text, console and serail but without result.

Any Idea ?

Jean-Yves Picard
3 REPLIES 3
Jimmy Vance
HPE Pro
Solution

Re: Suse text mode install

Try adding textmode=1 to your append line
No support by private messages. Please ask the forum! 
Michael Leu
Honored Contributor

Re: Suse text mode install

Jep, textmode=1 should help.

Full list: http://en.opensuse.org/SDB:Linuxrc

We use
- textmode=1
- TERM=linux
- console=ttyS1,115200
to get the ncurses/text mode when installing thru the iLO Virtual Serial Port (vsp).
Jean-Yves Picard
Trusted Contributor

Re: Suse text mode install

Hello,

Thanks for such a plain straightforward
answer.

I tested it and it works.

Jean-Yves Picard