博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
wubi arguments
阅读量:6272 次
发布时间:2019-06-22

本文共 3440 字,大约阅读时间需要 11 分钟。

 

wubi arguments:

form or . 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']")

 

 

 

转载地址:http://ulopa.baihongyu.com/

你可能感兴趣的文章
umask值与Linux中文件和目录权限的关系
查看>>
python自动化开发-8
查看>>
bzoj 2127: happiness
查看>>
Python 3.5 之路 day1
查看>>
selenium使用chrome抓取自动消失弹框的方法
查看>>
实现strStr()---简单
查看>>
只有PD号的调起
查看>>
返回一个整数数组中最大子数组的和
查看>>
leetcode(二)
查看>>
利用css实现居中的方法
查看>>
Spring + Hibernate 框架
查看>>
添加浏览器的用户样式表
查看>>
LigerUI学习笔记之布局篇 layout
查看>>
LeetCode题解(二)
查看>>
Mybatis通用Mapper
查看>>
文件磁盘命令(就该这么学6章内容)
查看>>
2016-207-19 随笔
查看>>
java的double类型如何精确到一位小数?
查看>>
看看国外的javascript题目,你能全部做对吗?
查看>>
ffmpeg 如何选择具有相同AVCodecID的编解码器 (AVCodec)
查看>>