lD信息共享怎么解除家庭共享

牛津高阶英汉双解词典 .ld2 - 外语学习 - 教育资料 - 爱分享网(免费资源分享下载)
牛津高阶英汉双解词典 .ld2
牛津高阶英汉双解词典 .ld2(其他类型文档,13.42MB)
赞助商链接
下载信息载入中...&&&&&&
请输入验证码:
下载说明:
1、推荐使用WinRAR v3.10 以上版本解压本站资源。
2、本站上所有资源均为网友收集上传。本站所有资源仅供学习和研究使用,不得用于任何商业用途。如有需要请购买正版。如有侵犯你版权的,请给我们发邮件,本站将立即改正。
3、下载本站资源时,如果服务器暂不能下载请过一段时间重试!
4、本站和网警密切配合,对发布违法资源零容忍。对疑似不合适的资源采取及时删除下载链接,待核实资源之后再决定开放下载或删除资源。
牛津高阶英汉双解词典 .ld2
其他类型文档
牛津高阶英汉双解词典.ld2
其他类型文档
Oxford Advanced Learner's English-Chinese Dictionary牛津高阶英汉双解词典.ld2
其他类型文档
牛津双解.ld2
其他教育资料
其他类型文档
朗文高阶.ld2
其他教育资料
其他类型文档
美国传统词典[双解].ld2
留学、进修
其他类型文档
牛津高阶英汉双解词典Oxford Advanced Learner's English-Chinese Dictionary.ld2
其他类型文档
牛津高阶英汉双解词典.doc
牛津高阶英汉双解词典.dic
语言、文化
其他类型文档
牛津高阶英汉双解词典.rarLinux下编译安装软件,找不到共享库xx.so的解决办法_Linux教程_
Linux下编译安装软件,找不到共享库xx.so的解决办法
来源:人气:319
编译memcached时,报错没有libevent,于是下载libevent,configure , make && make install ,然后在重新安装memcache成功之后。memcached默认安装在/usr/local/bin/目录下。
执行命令 ./memcache -help 报错:
[root@localhost bin]# ./memcached
./memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory
但是上面明明已经安装了 libevent 的,应该是memcached没有寻找到。
查找 libevent 安装的路径:
[root@localhost bin]# whereis libevent
libevent: /usr/local/lib/libevent.la /usr/local/lib/libevent.a /usr/local/lib/libevent.so
我们看到被安装到了:/usr/local/lib/libevent.so
我们查看 memcached 的依赖:
[root@localhost bin]# ldd /usr/local/bin/memcached
-gate.so.1 =&
(0x00c8d000)
libevent-2.0.so.5 =& not found
librt.so.1 =& /lib/librt.so.1 (0x)
libpthread.so.0 =& /lib/libpthread.so.0 (0x006fc000)
libc.so.6 =& /lib/libc.so.6 (0x)
/lib/ld-linux.so.2 (0x)
发现依赖的 libevent-2.0.so.5 =& not found 没有找到。
查看 libevent 如何寻找依赖:
[root@localhost bin]# LD_DEBUG=libs ./memcached -v
find library=libevent-2.0.so.5 [0]; searching
search cache=/etc/ld.so.cache
search path=/lib/tls/i686/sse2:/lib/tls/i686:/lib/tls/sse2:/lib/tls:/lib/i686/sse2:/lib/i686:/lib/sse2:/lib:/usr/lib/tls/i686/sse2:/usr/lib/tls/i686:/usr/lib/tls/sse2:/usr/lib/tls:/usr/lib/i686/sse2:/usr/lib/i686:/usr/lib/sse2:/usr/lib
(system search path)
trying file=/lib/tls/i686/sse2/libevent-2.0.so.5
trying file=/lib/tls/i686/libevent-2.0.so.5
trying file=/lib/tls/sse2/libevent-2.0.so.5
trying file=/lib/tls/libevent-2.0.so.5
trying file=/lib/i686/sse2/libevent-2.0.so.5
trying file=/lib/i686/libevent-2.0.so.5
trying file=/lib/sse2/libevent-2.0.so.5
trying file=/lib/libevent-2.0.so.5
trying file=/usr/lib/tls/i686/sse2/libevent-2.0.so.5
trying file=/usr/lib/tls/i686/libevent-2.0.so.5
trying file=/usr/lib/tls/sse2/libevent-2.0.so.5
trying file=/usr/lib/tls/libevent-2.0.so.5
trying file=/usr/lib/i686/sse2/libevent-2.0.so.5
trying file=/usr/lib/i686/libevent-2.0.so.5
trying file=/usr/lib/sse2/libevent-2.0.so.5
trying file=/usr/lib/libevent-2.0.so.5
我们看到:
search path=/lib/tls/i686/sse2:/lib/tls/i686:/lib/tls/sse2:/lib/tls:/lib/i686/sse2:/lib/i686:/lib/sse2:/lib:/usr/lib/tls/i686/sse2:/usr/lib/tls/i686:/usr/lib/tls/sse2:/usr/lib/tls:/usr/lib/i686/sse2:/usr/lib/i686:/usr/lib/sse2:/usr/lib
(system search path)
系统寻找 lib 的路径,中没有包含:/usr/local/lib/
所以找到了原因,解决方法就很简单了。也有多种方法。
1) 做一个软连接到上面的随便一个 search path 中的目录都是可以的:
[root@localhost bin]# ln -s /usr/local/lib/libevent.so /usr/lib/libevent-2.0.so.5
验证是否已经解决:
[root@localhost bin]# memcached -help
memcached 1.4.24
TCP port number to listen on (default: 11211)
UDP port number to listen on (default: 11211, 0 is off)
UNIX socket path to listen on (disables network support)
enable ascii "shutdown" command
mask for UNIX socket, in octal (default: 0700)
interface to listen on (default: INADDR_ANY, all addresses)
&addr& may be specified as host:port. If you don't specify
a port number, the value you specified with -p or -U is
used. You may specify multle addresses separated by comma
or by using -l multiple times
run as a daemon
maximize core file limit
-u &username& assume identity of &username& (only when run as root)
max memory to use for items in megabytes (default: 64 MB)
return error on memory exhausted (rather than removing items)
max simultaneous connections (default: 1024)
lock down all paged memory.
Note that there is a
limit on how much memory you may lock.
allocate more than that would fail, so be sure you
set the limit correctly for the user you started
the daemon with (not for -u &username&
under sh this is done with 'ulimit -S -l NUM_KB').
verbose (int errors/warnings while in event loop)
very verbose (also print client commands/reponses)
extremely verbose (also print internal state transitions)
print this help and exit
print memcached and libevent license
print version and exit
save PID in &file&, only used with -d option
-f &factor&
chunk size growth factor (default: 1.25)
-n &bytes&
minimum space allocated for key+value+flags (default: 48)
Try to use large memory pages (if available). Increasing
the memory page size could reduce the number of TLB misses
and improve the performance. In order to get large pages
from the OS, memcached will allocate the total item-cache
in one large chunk.
Use &char& as the delimiter between key prefixes and IDs.
This is used for per-prefix stats reporting. The default is
":" (colon). If this option is specified, stats collection
is tur if not, then it may be turned on
by sending the "stats detail on" command to the server.
number of threads to use (default: 4)
Maximum number of requests per event, limits the number of
requests process for a given connection to prevent
starvation (default: 20)
Disable use of CAS
Set the backlog queue limit (default: 1024)
Binding protocol - one of ascii, binary, or auto (default)
Override the size of each slab page. Adjusts max item size
(default: 1mb, min: 1k, max: 128m)
Disable flush_all command
Comma separated list of extended or experimental options
- (EXPERIMENTAL) maxconns_fast: immediately close new
connections if over maxconns limit
- hashpower: An integer multiplier for how large the hash
table should be. Can be grown at runtime if not big enough.
Set this based on "STAT hash_power_level" before a
- tail_repair_time: Time in seconds that indicates how long to wait before
forcefully taking over the LRU tail item whose refcount has leaked.
Disabled by default; dangerous option.
- hash_algorithm: The hash table algorithm
default is jenkins hash. options: jenkins, murmur3
- lru_crawler: Enable LRU Crawler background thread
- lru_crawler_sleep: Microseconds to sleep between items
default is 100.
- lru_crawler_tocrawl: Max items to crawl per slab per run
default is 0 (unlimited)
- lru_maintainer: Enable new LRU system + background thread
- hot_lru_pct: Pct of slab memory to reserve for hot lru.
(requires lru_maintainer)
- warm_lru_pct: Pct of slab memory to reserve for warm lru.
(requires lru_maintainer)
- expirezero_does_not_evict: Items set to not expire, will not evict.
(requires lru_maintainer)
我们看到没有报错了。
2) 在编译libevent的时候,指定相关目录:
[root@localhost libevent]# ./configure --help
`configure' configures this package to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE.
See below for descriptions of some of the useful variables.
Defaults for the options are specified in brackets.
Configuration:
-h, --help
display this help and exit
--help=short
display options specific to this package
--help=recursive
display the short help of all the included packages
-V, --version
display version information and exit
-q, --quiet, --silent
do not print `checking ...' messages
--cache-file=FILE
cache test results in FILE [disabled]
-C, --config-cache
alias for `--cache-file=config.cache'
-n, --no-create
do not create output files
--srcdir=DIR
find the sources in DIR [configure dir or `..']
Installation directories:
--prefix=PREFIX
install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX
install architecture-dependent files in EPREFIX
By default, `make install' will install all the files in
`/usr/local/bin', `/usr/local/lib' etc.
You can specify
an installation prefix other than `/usr/local' using `--prefix',
for instance `--prefix=$HOME'.
For better control, use the options below.
Fine tuning of the installation directories:
--bindir=DIR
user executables [EPREFIX/bin]
--sbindir=DIR
system admin executables [EPREFIX/sbin]
--libexecdir=DIR
program executables [EPREFIX/libexec]
--sysconfdir=DIR
read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR
modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR
modifiable single-machine data [PREFIX/var]
--libdir=DIR
object code libraries [EPREFIX/lib]
--includedir=DIR
C header files [PREFIX/include]
--oldincludedir=DIR
C header files for non-gcc [/usr/include]
--datarootdir=DIR
read-only arch.-independent data root [PREFIX/share]
--datadir=DIR
read-only architecture-independent data [DATAROOTDIR]
--infodir=DIR
info documentation [DATAROOTDIR/info]
--localedir=DIR
locale-dependent data [DATAROOTDIR/locale]
--mandir=DIR
man documentation [DATAROOTDIR/man]
--docdir=DIR
documentation root [DATAROOTDIR/doc/PACKAGE]
--htmldir=DIR
html documentation [DOCDIR]
--dvidir=DIR
dvi documentation [DOCDIR]
--pdfdir=DIR
pdf documentation [DOCDIR]
ps documentation [DOCDIR]
Program names:
--program-prefix=PREFIX
prepend PREFIX to installed program names
--program-suffix=SUFFIX
append SUFFIX to installed program names
--program-transform-name=PROGRAM
run sed PROGRAM on installed program names
System types:
--build=BUILD
configure for building on BUILD [guessed]
--host=HOST
cross-compile to build programs to run on HOST [BUILD]
Optional Features:
--disable-option-checking
ignore unrecognized --enable/--with options
--disable-FEATURE
do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG]
include FEATURE [ARG=yes]
--enable-dependency-tracking
do not reject slow dependency extractors
--disable-dependency-tracking
speeds up one-time build
--enable-gcc-warnings
enable verbose warnings with GCC
--disable-thread-support
disable support for threading
--disable-malloc-replacement
disable support for replacing the memory mgt
--disable-openssl
disable support for openssl encryption
--disable-debug-mode
disable support for running in debug mode
--disable-libevent-install, disable installation of libevent
--disable-libevent-regress, skip regress in make check
--enable-function-sections, make static library allow smaller binaries with --gc-sections
--enable-shared[=PKGS]
build shared libraries [default=yes]
--enable-static[=PKGS]
build static libraries [default=yes]
--enable-fast-install[=PKGS]
optimize for fast installation [default=yes]
--disable-libtool-lock
avoid locking (might break parallel builds)
Optional Packages:
--with-PACKAGE[=ARG]
use PACKAGE [ARG=yes]
--without-PACKAGE
do not use PACKAGE (same as --with-PACKAGE=no)
--with-pic[=PKGS]
try to use only PIC/non-PIC objects [default=use
--with-gnu-ld
assume the C compiler uses GNU ld [default=no]
--with-sysroot=DIR Search for dependent libraries within DIR
(or the compiler's sysroot if not specified).
Some influential environment variables:
C compiler command
C compiler flags
linker flags, e.g. -L&lib dir& if you have libraries in a
nonstandard directory &lib dir&
libraries to pass to the linker, e.g. -l&library&
(Objective) C/C++ preprocessor flags, e.g. -I&include dir& if
you have headers in a nonstandard directory &include dir&
C preprocessor
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
Report bugs to the package provider.
Installation directories:
--prefix=PREFIX
install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX
install architecture-dependent files in EPREFIX
By default, `make install' will install all the files in
`/usr/local/bin', `/usr/local/lib' etc.
You can specify
an installation prefix other than `/usr/local' using `--prefix',
for instance `--prefix=$HOME'.
For better control, use the options below.
Fine tuning of the installation directories:
--bindir=DIR
user executables [EPREFIX/bin]
--sbindir=DIR
system admin executables [EPREFIX/sbin]
--libexecdir=DIR
program executables [EPREFIX/libexec]
--sysconfdir=DIR
read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR
modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR
modifiable single-machine data [PREFIX/var]
--libdir=DIR
object code libraries [EPREFIX/lib]
--includedir=DIR
C header files [PREFIX/include]所以我们可以如此的在configure时指定路径:
[root@localhost libevent]# ./configure --libdir=/usr/lib
3) 修改环境变量 LD_LIBRARY_PATH,将/usr/local/lib 包含进去。但是该方法一般不推荐这样做(但是有一种变通的做法,具体参见总结中的 3&)。
---------------------------------------------------------------------------------------------------------
1. 和共享库相关的一些错误如何处理:
1& LD_DEBUG 命令:
LD_DEBUG 是 glibc 中的 loader 为了方便自身调试而设置的一个环境变量。通过设置这个环境变量,可以方便的看到 loader 的加载过程。
[root@localhost libevent]# LD_DEBUG=help ls
Valid options for the LD_DEBUG environment variable are:
display library search paths
display relocation processing
display progress for input file
display symbol table processing
display information about symbol binding
display version dependencies
all previous options combined
statistics
display relocation statistics
determined unused DSOs
display this help message and exit
To direct the debugging output into a file instead of standard output
a filename can be specified using the LD_DEBUG_OUTPUT environment variable.
上面列出了 LD_DEBUG 所有的选项,上面我们就使用了 LD_DEBUG=libs 。使用该命令可以获取很多有用的信息。
2& ldd - print shared library dependencies 打印输出依赖库
3& LD_LIBRARY_PATH, /etc/ld.so.conf.d,ldconfig
&&&& 因为连接器会到目录 /etc/ld.so.conf.d 下面去寻找 配置了 共享库 的目录,所以根据这个原理,我们可以为 /usr/local/lib 专门建立一个配置文件,
&&&& 加入到连接器寻找 共享库 的目录列表中:
[root@localhost ld.so.conf.d]# pwd
/etc/ld.so.conf.d
[root@localhost ld.so.conf.d]# ls
kernel-2.6.32-504.el6.i686.conf
-i386.conf
qt-i386.conf
xulrunner-32.conf
[root@localhost ld.so.conf.d]# echo "/usr/local/lib" & usr_local_lib.conf
[root@localhost ld.so.conf.d]# ll
-r--r--r--. 1 root root 324 Oct 15
2014 kernel-2.6.32-504.el6.i686.conf
-rw-r--r--. 1 root root
2014 mysql-i386.conf
-rw-r--r--. 1 root root
2011 qt-i386.conf
-rw-r--r--. 1 root root
15 Sep 13 08:51 usr_local_lib.conf
-rw-r--r--. 1 root root
2013 xulrunner-32.conf
[root@localhost ld.so.conf.d]# cat usr_local_lib.conf
/usr/local/lib
[root@localhost ld.so.conf.d]# ldconfig
这样以后 /usr/local/lib 中的共享库就会被连接器寻找到,注意修改连接器相关的配置之后,一定要用 ldconfig 命令更新一下,不然还是找不到。&&&
4&&ln -s /usr/local/lib/libevent.so /usr/lib/libevent-2.0.so.5 建立一个软连接
推荐方法:4 和 3。
2. 如何寻找文件,库等:
whereis - locate the binary, source, and manual page files for a command
updatedb - update a database for locate
locate - find files by name
find 命令 find - search for files in a directory hierarchy示例: whereis libevent, updatedb, locate libevent,
find / -name libevent.*
[root@localhost bin]# find /usr/local -name libevent.*
/usr/local/redis-3.0.3/deps/hiredis/adapters/libevent.h
/usr/local/src/libevent/libevent.pc.in
/usr/local/src/libevent/libevent.pc
/usr/local/lib/libevent.la
/usr/local/lib/libevent.a
/usr/local/lib/pkgconfig/libevent.pc
/usr/local/lib/libevent.so[root@localhost bin]# find / -name libevent.so/usr/local/lib/libevent.so[root@localhost bin]# find / -name libevent.so*/usr/local/lib/libevent.so
find 命令 第一个参数是查找的路径 /usr/local 第二个参数是要查找的文件名的表达式,可以使用正则表达式来表示查找的文件名。
find 还有一个常见的用法:对找到的文件执行某个命令:
find . -name \*.lo -o -name \*.o | xargs rm -f&&& (xargs - build and execute command lines from standard input)
3. configure 之前一定要 configure --help 查看配置选项。
优质网站模板& & ld: cannot find -lgcc_s解决& & 今天在编译node.js的时候发生此错误,导致编译错误无法继续& & ld: cannot find -lgcc_s& & 问题原因:& & gcc编译模块没有找到,起始是软连接失效了,在find -name 'libgcc_s.so'& & 后发现有的目录下的gcc*_s.so为红色& & 解决方法:& & 重新软链接 ln -s /lib/libgcc_s.so.1 libgcc_s.so
声明:该文章系网友上传分享,此内容仅代表网友个人经验或观点,不代表本网站立场和观点;若未进行原创声明,则表明该文章系转载自互联网;若该文章内容涉嫌侵权,请及时向
上一篇:下一篇:
相关经验教程
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.004 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.005 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.001 收益
的原创经验被浏览,获得 ¥0.005 收益  LD电脑共享器!共享一台电脑可支持30个用户,释放标准PC机未被利用的性能!节省硬件投入,节省维护费用,节省电费,方便管理......更多优势等待您的体验!   现在的PC机如同超级计算机   
LD-680A电脑共享器大多数的PC机用户仅仅利用了他们所购买电脑性能的小部分,最少的只有5%。电脑共享器 利用了PC机的富余性能,并支持多达30个用户享用精彩的PC体验。用户感受如同使用自己的PC机,却无需被高额成本和系统维护困扰。   大幅削减您的计算机成本   LD电脑共享器的成本不到入门级PC价格的1/3,而且会节约更多的后续使用成本。终端没有可移动部件和本地存储器,因为您只需维护和升级用于共享的PC机,而不必升级LD电脑共享器,所以只会有极少的维护和可控的维护成本。事实上,无论何时当您升级到最新的PC技术,您的LD电脑共享器用户都将自动感受到性能的提高。   希望更环保?请对比LD电脑共享器仅有5瓦的电力消耗,而普通PC机至少115瓦以上。很小的机壳(大约一本书尺寸的一半),很少的耗电,很少的热量,产生很少的电子废物,并且完全没有噪音。   
LD-680A电脑共享器易于安装,管理简单   连接上您的网线,鼠标,键盘各显示器。在PC主机上安装附带的软件。这只需几分钟。现在您已经加入了多用户,每个用户都有他们自己丰富的Windows或者Linux环境。最重要的是,您可以运行标准的应用程序,而且您的员工和用户不需要特别培训。   功能强大而灵活   LD电脑共享器设计紧凑,配有一个立体声插口并支持16位的视频。   支持640*480;800*600,80*1024等视频模式。   利用多用户计算技术,释放您PC机的潜能   LD-681A电脑共享器为什么要选择LD电脑共享器?  消减70%的计算成本   易于安装设置维护和支持   Eco-友好支持小于5瓦的耗电   运行于Windows和Linux系统   有效节约成本   相对于购买传统PC,可以节约高达70%的总体使用成本。每个LD电脑共享器接入终端只消耗很少的电力,只需要很少的支持并且没有可移动部件。   最少的系统维护   您只需针对PC主机进行维护升级,因为LD电脑共享器并没有像CPU或者硬盘这样的硬体组件。   
LD-533B并发的桌面操作   所有LD电脑共享器用户可以同时并独立的接入PC,并运行用户应用程序。   小巧,高效,ECO-友好支持   节省空间的设计为您的办公室或者桌面提供了更多空间仅仅只有168*133 *31 毫米。LD电脑共享器没有可移动部件,它完全安静地运行,并且节约能源-只有5瓦的耗电。   LD电脑共享器可适用于:   中小学校和大校   商业和办公应用   互联网和电子邮件   制造业   ……   注:一台PC机可以支持的用户数量依赖于系统性能、操作系统和所需应用,以及对这些应用的性能预期,请记住,在增加额外用户之前需要按您的应用进行测试。   LD-680A电脑共享器 终端参数规格  
硬件尺寸接入终端:长:115毫米,宽:115毫米,高:26毫米 电源支持输入:100-250V交流,50-60Hz;输出:5V 2ALED指示Power:电源连接:LAN:网络连接 Ready:主机连接外部接口​​01 – 扬声器输出口 02 – 键盘口 03 – 鼠标口01 – RJ-45网口 02 – 显示器接口 03 – 直流电源输入 04 – 电源开关主机连接通过100M以太网连接显示分辨率640×480,800×600,或75Hz),(63Hz),最大16位彩色音频扬声器立体声输出数据安全没有USB端口确保绝对数据安全内部硬件全部固化设计,没有可移动部件,没有风扇,没有本地用户存储 芯片系统集成 没有本地用户操作系统可靠性()大大超大型过100,000小时(遵循Bellcore Issue 6 TR-332,Case 2,Part I at 40℃计算)硬件安全没有本地用户存储终端服务软件单台PC最大用户数当使用服务器操作系统(例如Windows Server 2003 or Linux)支持30个用户; 当使用桌面操作系统(例如Windows XP)支持10个用户;支持的操作系统微软:Windows XP Professional and Windows 2000 Professional Linux:server variants(refer to Support section of Website for latest supported versions of Linux)支持的软件PC应用软件,包括浏览器,电子邮件,Office套件,Media Player,教育软件和更多, 不支持3D游戏,不支持全屏播放的家庭影院应用维护通过管理界面在线远程升级系统需求及选择主机配置参考说明文档套件内容1个套件包括1个接入终端,1个电源适配器,终端服务软件安装光盘,和快速安装指南。 不包括PC,键盘,鼠标,扬声器和其他外设,这些外设必须单独购买。可选软件​l 不支持3D游戏   2 不支持全屏播放的家庭影院应用。   3 应用软件和操作系统的授权请单独购买。
为本词条添加和相关影像
互动百科的词条(含所附图片)系由网友上传,如果涉嫌侵权,请与客服联系,我们将按照法律之相关规定及时进行处理。未经许可,禁止商业网站等复制、抓取本站内容;合理使用者,请注明来源于。
登录后使用互动百科的服务,将会得到个性化的提示和帮助,还有机会和专业认证智愿者沟通。
您也可以使用以下网站账号登录:
此词条还可添加&
编辑次数:6次
参与编辑人数:5位
最近更新时间: 11:03:38
贡献光荣榜

我要回帖

更多关于 如何解除共享 的文章

 

随机推荐