On Tue, 2003-09-23 at 16:55, sjsmith3@xxxxxxxxxxx wrote: > Is there a way to have a python gui popup from the %pre section > of a kickstart file to get user input? You should be able to set DISPLAY to :1 and then display something. Untested little proof of concept scriptlet %pre --interpreter /usr/bin/python import os, sys os.environ["DISPLAY"] = ":1" import gtk win = gtk.Window() win.add(gtk.Label("hi")) win.show_all() gtk.main() # End Cheers, Jeremy