zoukankan      html  css  js  c++  java
  • 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']")
  • 相关阅读:
    文件夹无法删除解决方案
    常用Web Service汇总(天气预报、时刻表等)
    浏览器兼容手册
    如何在word2007下右键添加“新建Word 2003 文档”
    Centos7上实现不同网段的服务器文件共享
    ubuntu安装界面 会出现不完整情况
    Centos7搭建dhcp服务器
    Centos7上搭建ftp服务器
    Centos7上配置网络和本地yum方法
    浅谈网络流
  • 原文地址:https://www.cnblogs.com/eshizhan/p/2993804.html
Copyright © 2011-2022 走看看