wubi arguments

 

wubi arguments:

form here or here. I coundn't found out wubi src address, you can tell me, if you know. ;)

 

parser.add_option("--quiet", action="store_const", const="quiet", dest="verbosity", help="run in quiet mode, only critical error messages are displayed")
parser.add_option("--verbose", action="store_const", const="verbose", dest="verbosity", help="run in verbose mode, all messages are displayed")
parser.add_option("--install", action="store_const", const="install", dest="run_task", help="run the uninstaller, it will first look for an existing uninstaller, otherwise it will run itself in uninstaller mode")
parser.add_option("--uninstall", action="store_const", const="uninstall", dest="run_task", help="run the installer, if an existing installation is detected it will be uninstalled first")
parser.add_option("--cdmenu", action="store_const", const="cd_menu", dest="run_task", help="run the CD menu selector")
parser.add_option("--cdboot", action="store_const", const="cd_boot", dest="run_task", help="install a CD boot helper program")
parser.add_option("--showinfo", action="store_const", const="show_info", dest="run_task", help="open the distribution website for more information")
parser.add_option("--nobittorrent", action="store_true", dest="no_bittorrent", help="Do not use the bittorrent downloader")
parser.add_option("--32bit", action="store_true", dest="force_i386", help="Force installation of 32 bit version")
parser.add_option("--skipmd5check", action="store_true", dest="skip_md5_check", help="Skip md5 checks")
parser.add_option("--skipsizecheck", action="store_true", dest="skip_size_check", help="Skip disk size checks")
parser.add_option("--skipmemorycheck", action="store_true", dest="skip_memory_check", help="Skip memory size checks")
parser.add_option("--noninteractive", action="store_true", dest="non_interactive", help="Non interactive mode")
parser.add_option("--test", action="store_true", dest="test", help="Test mode")
parser.add_option("--debug", action="store_true", dest="debug", help="Debug mode")
parser.add_option("--drive", dest="target_drive", help="Target drive")
parser.add_option("--size", type="int", dest="installation_size_mb", help="Installation size in MB")
parser.add_option("--locale", dest="locale", help="Linux locale")
parser.add_option("--force-wubi", action="store_true", dest="force_wubi", help="Show Wubi option in CD menu even when using a DVD")
parser.add_option("--language", dest="language", help="Language")
parser.add_option("--username", dest="username", help="Username")
parser.add_option("--password", dest="password", help="Password (md5)")
parser.add_option("--distro", dest="distro_name", help="Distro")
parser.add_option("--accessibility", dest="accessibility", help="Accessibility")
parser.add_option("--webproxy", dest="web_proxy", help="Web proxy")
parser.add_option("--isopath", dest="iso_path", help="Use specified ISO")
parser.add_option("--dimagepath", dest="dimage_path", help="Use specified disk image")
parser.add_option("--exefile", dest="original_exe", default=None, help="Used to indicate the original location of the executable in case of self-extracting files")
parser.add_option("--log-file", dest="log_file", default=None, help="use the specified log file, if omitted a log is created in your temp directory, if the value is set to 'none' no log is created")
parser.add_option("--interface", dest="use_frontend", default=None, help="use the specified user interface, ['win32']")

 

 

 

posted on 2013-04-01 16:47  eshizhan  阅读(253)  评论(0编辑  收藏  举报