64位ubuntu 64 ia32 libs14.04有搞定ia32-libs的么

温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!&&|&&
观乎其上,得乎其中,
观乎其中,得乎其下。
LOFTER精选
网易考拉推荐
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
前几天 Ubuntu 14.04 终于发布了,然后就开始了预谋已久的系统升级了。以前都是安装 32 位的 Ubuntu,这次想开始全新的 64 位时代了,所以安装了 64 位的&Ubuntu 14.04。不过安装完系统后,安装一些软件时发现库或者软件包依赖的问题。于是就各种搜索找解决办法,最终算是把问题都解决了,所以写篇文章总结一下在 64 位系统下安装 32 位软件以及解决 deb 包依赖的一些方法。首先,要在&64 位系统下安装 32 位软件需要有一些基本库(32位)的支持,例如:libc6:i386 等。默认情况下,64 位的 Ubuntu 使用软件中心或者新立得等工具安装的都是 64 位的库或者软件,所以要想安装 32 位的库或者软件需要进行一些必要的设置来使系统支持 i386 架构的软件:1 打开终端,使用 dpkg 命令(dpkg --help 查看帮助)进行架构的添加:dpkg&--add-architecture i386 & & & & & & & & & & & & & & & & //&添加对 i386 架构的支持dpkg&--remove-architecture i386 & & & & & & & & & & & & & // 移除对&i386 架构的支持2 安装基础的 32 位库:在终端中输入命令(使用软件包管理工具也可以):sudo apt-get install gcc-multilib3 下载 Beyond Compare(deb包),安装时会报缺少库 ia32-libs 的错误,所以需要先完成 ia32-libs 的安装,& & 虽然我下载的就是 amd64 版本的软件,但还是会依赖 ia32-libs,可能是 64 位不完全,呵呵;4 安装&ia32-libs(下载地址:&):sudo dpkg -i&ia32-libs__amd64.deb执行上面的命令后发现还是软件包依赖关系不满足,缺少以下软件包(我的电脑是这几个):lib32z1lib32ncurses5lib32asound2lib32v4l-0ps:上面命令执行完后虽然安装是失败的,但是会造成其他软件包安装时出问题,最好清理掉:& & & & sudo dpkg -r ia32-libs其中前两个可以直接在新立得软件包管理器中找到,而另外两个却没有!继续从 && 搜索下载(amd64的)。在这里不得不说一下,这个网站真是不错,有超多的软件包,rpm和deb的都有!好不容易下载完了,在安装的时候还是遇到了老问题:软件包依赖关系!lib32asound2&依赖的软件包是 libasound2 (= 1.0.25-3ubuntu3.1);lib32v4l-0 依赖的软件包是&libv4l-0 (= 0.8.8-3);就是说前面 32 位的软件包又依赖后面 64 位的软件包,通过新立得搜索发现这两个 64 位的软件包都已经安装了,只是版本太高了!而两个&32 位的软件包都是依赖特定的版本(=)。这时候我首先想通过强制安装试一下,就是先忽略依赖关系:我用的是忽略依赖版本,其他选项使用命令查看:dpkg --force-helpsudo dpkg -i --force-depends-version&lib32asound2_1.0.25-3ubuntu3.1_amd64.deb这样确实是可以安装上的,但是使用新立得管理时提示有破损的软件包,这样可能导致其他软件包安装出问题,看来这样强制安装的方法是不可取的,只能寻找其他办法了!既然已经安装了高版本,并且在高版本的依赖关系里写明了替代之前的版本,那么库内部的实现应该是兼容的。所以考虑尝试修改deb软件包。开始想直接通过归档管理器提取deb包中 DEBIAN 下的 control 文件,通过 vi 或者 gedit 修改后,再替换掉原来的。但是无法通过归档管理器向deb包中添加文件,看来需要使用deb打包工具了。搜索一番后发现如果只是进行简单修改再重新打包,那么使用 dpkg-deb 命令就可以了。其他关于deb打包的知识:修改下载的deb包,将deb包中 DEBIAN 下的 control 文件中关于依赖的字段中的 = 改为 &=:dpkg-deb --help & & & & & & & & & & & & & & & & & & &// 查看命令帮助1 解压缩 deb 包中的文件:dpkg-deb -x&lib32asound2_1.0.25-3ubuntu3.1_amd64.deb deb;2 解压缩 deb 包中的控制信息:cd debdpkg-deb -e ../lib32asound2_1.0.25-3ubuntu3.1_amd64.deb此时在 deb 目录下应该有两个目录:DEBIAN &和 usr3 修改 DEBIAN/control 文件:原来:Depends: libasound2 (= 1.0.25-3ubuntu3.1), libc6-i386 (&= 2.7)改为:Depends: libasound2 (&= 1.0.25-3ubuntu3.1), libc6-i386 (&= 2.7)这样其实就可以了,当然高兴的话把软件包的版本也改一下,呵呵:原来:Version: 1.0.25-3ubuntu3.1改为:Version: 1.0.25-3ubuntu3.2(自定义)4 重新打包:切换到 deb 目录的上一级目录下,执行命令(后面软件包名自定义):dpkg-deb -b deb&lib32asound2_1.0.25-3ubuntu3.2_amd64.deb出现一个小的警告后,新的 deb 包就打好了!现在再进行新 deb 包的安装就没有问题了:sudo dpkg -i&lib32asound2_1.0.25-3ubuntu3.2_amd64.deb另外一个软件包&lib32v4l-0 也是一样的步骤,将相应的 = 改为 &= 重新打包安装就可以了!最后再次运行上面的命令完成 ia32-libs 的安装:sudo dpkg -i&ia32-libs__amd64.deb5 终于进入正题了:安装 Beyond Compare (程序员必备)ia32-libs 安装好后,一条命令就搞定了:sudo dpkg -i&ia32-libs__amd64.deb安装好后启动 bcompare,然后完成注册就行了!--------------------------------------------------------------------------------------------------------------------------附件:Beyond Compare 和 ia32-libs(内含注册码,ia32-libs 目录下 original 中的是未修改的)bcompare:ia32-libs:
阅读(1910)|
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
历史上的今天
在LOFTER的更多文章
loftPermalink:'',
id:'fks_',
blogTitle:'ubuntu-14.04-desktop-amd64 安装 Beyond Compare,ia32-libs',
blogAbstract:'原文链接:'
{list a as x}
{if x.moveFrom=='wap'}
{elseif x.moveFrom=='iphone'}
{elseif x.moveFrom=='android'}
{elseif x.moveFrom=='mobile'}
${a.selfIntro|escape}{if great260}${suplement}{/if}
{list a as x}
推荐过这篇日志的人:
{list a as x}
{if !!b&&b.length>0}
他们还推荐了:
{list b as y}
转载记录:
{list d as x}
{list a as x}
{list a as x}
{list a as x}
{list a as x}
{if x_index>4}{break}{/if}
${fn2(x.publishTime,'yyyy-MM-dd HH:mm:ss')}
{list a as x}
{if !!(blogDetail.preBlogPermalink)}
{if !!(blogDetail.nextBlogPermalink)}
{list a as x}
{if defined('newslist')&&newslist.length>0}
{list newslist as x}
{if x_index>7}{break}{/if}
{list a as x}
{var first_option =}
{list x.voteDetailList as voteToOption}
{if voteToOption==1}
{if first_option==false},{/if}&&“${b[voteToOption_index]}”&&
{if (x.role!="-1") },“我是${c[x.role]}”&&{/if}
&&&&&&&&${fn1(x.voteTime)}
{if x.userName==''}{/if}
网易公司版权所有&&
{list x.l as y}
{if defined('wl')}
{list wl as x}{/list}x86 - How to install ia32-libs in Ubuntu 14.04 LTS (Trusty Tahr) - Stack Overflow
Join the Stack Overflow Community
Stack Overflow is a community of 7.1 million programmers, just like you, helping each other.
J it only takes a minute:
I installed Ubuntu 14.04 (Trusty Tahr) yesterday. Everything seems OK. But when I tried to compile some C code, I encounter the following error. The error seems to be due to the OS lacking the 32-bit architecture support. The error output is as following:
/usr/bin/ld: i386 architecture of input file `./libsc.a(ftl_msg.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `./libsc.a(libsc_debug.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `./libsc.a(libsc_str.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `./libsc.a(libsc_cfg_common.o)' is incompatible with i386:x86-64 output
I used to apt-get install ia32-libs when I was using Ubuntu&12.04 (Precise Pangolin). But what I know is that Ubuntu has removed the ia32-libs since Ubuntu&13.10 (Saucy Salamander). How can I fix this problem?
You can try this to install the 32-bit library (not all in ia32-libs):
apt-get install program:i386
Or if you want to install the whole ia32-lib instead, try the following order:
cd /etc/apt/sources.list.d
echo "deb http://old-/ubuntu/ raring main restricted universe multiverse" &ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
PS: In this way, you can install ia32-libs. However, we add the source of 13.04 instead, so, there may be some unknown problem. After installing ia32-libs, I recommend you to remove the ia32-libs-raring.list in /etc/apt/sources.list.d, and do sudo apt-get update.
If you want to fix the dependency of Android SDK, you can try this bellow:
sudo apt-get install -y libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1
Install gcc multiple library.
sudo apt-get install gcc-multilib
The best answer I have ever seen is
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
sudo ./adb
I got it finally! Here is my way, and I hope it can help you :)
sudo apt-get install libc6:i386
cd /etc/apt/sources.list.d
echo "deb http://old-/ubuntu/ raring main restricted universe multiverse" &ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
rm /etc/apt/sources.list.d/ia32-libs-raring.list
apt-get update
sudo apt-get install gcc-multilib
I don't know the reason why I need to install these, but it works on my computer. When you finish installing these packages, it's time to try. Oh yes, I need to tell you. This time when you want to compile your code, you should add -m32 after gcc, for example: gcc -m32 -o hello helloworld.c. Just make clean and make again. Good luck friends.
PS: my environment is: Ubuntu 14.04 64-bit (Trusty Tahr) and GCC version 4.8.4. I have written the solution in my blog, but it is in Chinese :-) - .
11k1576109
These alternative libraries worked for me:
sudo apt-get update
sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6
I had the same problem as above and
suggested installing:
Hint: On 64-bit systems, make sure the 32-bit libraries are installed:
"sudo apt-get install ia32-libs"
or on some systems,
"sudo apt-get install lib32z1"
When I tried to install ia32-libs, Ubuntu prompted to install three other packages:
$ sudo apt-get install ia32-libs
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ia32-libs is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
lib32z1 lib32ncurses5 lib32bz2-1.0
E: Package 'ia32-libs' has no installation candidate
$ sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
With Android Studio and intellij, I also had to install the 32bit version of libstdc++6:
sudo apt-get install lib32stdc++6
For me, I have to run
sudo dpkg --add-architecture i386
before running the correct answer. Otherwise, I can't install ia32-libs.
11k1576109
Simply install the 32-bit version of the program, instead of the 64-bit version.
This is much safer than installing packages which are not intended for the distribution at hand.
I got this suggestion from the .
Google Earth used to employ ia32-libs under 64-bit Ubuntu 12.04.
The ia32-libs package is no longer available in Ubuntu, starting with
Ubuntu 13.10. The package was superseded by multiarch support so you
don't need it any more, but some 64bit packages (which are actually
32bit applications) still depend on this package and because of this,
they can't be installed in Ubuntu 14.04 or 13.10, 64bit. [...]
The "fix" or more specifically the correct way of installing these
apps which depend on ia32-libs is to simply install the 32bit package
on Ubuntu 64bit. Of course, that will install quite a few 32bit
packages, but that's how multiarch works.
The problem with some programs (like Google Earth) is that the 32-bit package does not
support multiarch. Consequently, some 32-bit dependencies need to be installed manually to make the 32-bit version of the program run on Ubuntu 64-bit.
sudo dpkg --add-architecture i386 # only needed once
sudo apt-get update
sudo apt-get install libfontconfig1:i386 libx11-6:i386 libxrender1:i386 libxext6:i386 libgl1-mesa-glx:i386 libglu1-mesa:i386 libglib2.0-0:i386 libsm6:i386
5,40533836
cd /etc/apt/sources.list.d
echo "deb /ubuntu/ precise main restricted universe multiverse" &ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
rm /etc/apt/sources.list.d/ia32-libs-raring.list
apt-get update
If you are in China, you can modify "raring" to "precise" (for
(Raring Ringtail) and , respectively). I installed
on Ubuntu&14.04 (Trusty Tahr).
11k1576109
The problem is that in many cases the packages are multiarch already so the i386 package is not available, but other packages still depend on the i386 package only. This is a problem in the repository, and the managers of the repos should fix it
A solution is add the corresponding
package way to your repository. For this, type the below commands:
echo "deb ftp.us.debian.org/debian wheezy main" && /etc/apt/sources.list
sudo apt-get update
sudo apt-get install ia32-libs-i386
The first line writes in the end of the sources.list file the package way.
This works for me. I wish that helps you.
11k1576109
protected by ♦
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10
on this site (the ).
Would you like to answer one of these
Not the answer you're looking for?
Browse other questions tagged
The week's top questions and answers
Important community announcements
Questions that need answers
By subscribing, you agree to the
rev .25821
Stack Overflow works best with JavaScript enabled博客访问: 109340
博文数量: 95
博客积分: 0
博客等级: 民兵
技术积分: 626
注册时间:
IT168企业级官微
微信号:IT168qiye
系统架构师大会
微信号:SACC2013
分类: LINUX
在64位ubuntu 14.04系统上添加32位gcc编译器,在PATH变量中添加编译器路径,系统可成功找到该gcc编译器,但是使用时却出现 bash: xxxx no such file or director
& & 该问题的原因是: 64位系统缺少32位兼容库, 从ubuntu13.10开始已经废弃了ia32-libs库,在ubuntu14.04中需安装的库如下:
libc6:i386&
libstdc++6:i386&
libncurses5:i386&
zlib1g:i386
安装完成后即可正常使用这些gcc编译器了.
阅读(1655) | 评论(0) | 转发(0) |
相关热门文章
给主人留下些什么吧!~~
请登录后评论。administrator@ubuntu:~$ sudo apt-get install ia32-libs
[sudo] password for administrator:&
正在读取软件包列表... 完成
正在分析软件包的依赖关系树 &&&&&&
正在读取状态信息... 完成 &&&&&&
有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是
因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件
包尚未被创建或是它们已被从新到(Incoming)目录移出。
下列信息可能会对解决问题有所帮助:
下列软件包有未满足的依赖关系:
&ia32-libs : 依赖: ia32-libs-multiarch 但无法安装它
E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。
这种情况在11.10以下(包括11.10)中都没有出现。
在搭建android 开发环境的时候 ,通常都会出现无法创建adv的情况,这种情况的原因是因为ubuntu是64位的,没有安装32的依赖库,而我们的解决方法,通常也是&sudo apt-get install ia32-libs,这个方法在11.10以下是可以的,但是12.04上面就会出现上面的情况无法安装,下面是我找到的方法:
1:apt-get install gnupg flex bison gperf zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs x11proto-core-dev libx11-dev lib32readline-gplv2-dev lib32z1-dev libgl1-mesa-dev g++-multilib
(经过验证发现方法一并没有用)
-------------------------------------------------------------------------------
arm-linux-gcc -v(问题)
网上也没有找到合适的方法。
最后还是用google(还是比baidu强啊),虽然没有找到该库的安装方法,但是找到了解决方法:即自己安装需要的32位库
☆①$ sudo apt-get install libc6:i386 libgcc1:i386 gcc-4.6-base:i386 libstdc++5:i386 libstdc++6:i386
我本意是运行adb的。运行adb时,发现缺乏libncurses5库,自己动手,丰衣足食,比葫芦画瓢,
☆②sudo apt-get install libncurses5:i386
在64位下,gcc默认编译代码位64位的,但是,如果你想编译位的,可以用gcc -m32选项,来设置。
不过,不幸的是,会出现错误,说找不到 /usr/include/features.h文件什么的。google一下,发现用这种方法:
☆③sudo apt-get install g++-multilib(就这一句有用的)
-------------------------------------------------------------------------------
这么纠结过后,终于能创建模拟器了,但是又有新的问题:
SDL init failure, reason is: No available video device
各方查找发现:
方法1:sudo apt-get install ia32-libs lib32stdc++6
结果出现:
正在读取软件包列表... 完成正在分析软件包的依赖关系树&&&&&&正在读取状态信息... 完成&&&&&&lib32stdc++6 已经是最新的版本了。lib32stdc++6 被设置为手动安装。有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件包尚未被创建或是它们已被从新到(Incoming)目录移出。下列信息可能会对解决问题有所帮助:下列软件包有未满足的依赖关系:&ia32-libs : 依赖: ia32-libs-multiarch 但无法安装它E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。
问题有返回前面了
之后我又采取这个方法命令:
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 libz1:i386 libsdl1.2debian:i386
结果出现:
正在读取软件包列表... 完成正在分析软件包的依赖关系树&&&&&&正在读取状态信息... 完成&&&&&&E: 无法定位软件包 libc6E: 无法定位软件包 libncurses5E: 无法定位软件包 libstdc++6E: 无法按照正则表达式 libstdc++6 找到任何软件包E: 无法定位软件包 libz1E: 无法定位软件包 libsdl1.2debianE: 无法按照正则表达式 libsdl1.2debian 找到任何软件包
估计是之前更新不上,下面又进行:
(成功的,只用这一句即可)sudo apt-get update
SDL(Simple DirectMedia Layer)是一个自由的跨平台的多媒体开发包,适用于 游戏、游戏SDK、演示软件、模拟器、MPEG播放器和其他应用软件。
阅读(...) 评论()Ubuntu14.04如何安装32位兼容库,即ia32-libs
我现在安装了ubuntu 14.04 LTS版本,但是发现它好像不兼容32位. 我在编译程序的时候提示说:
/usr/bin/ld: i386 architecture of input file `./libsc.a(ftl_msg.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `./libsc.a(libsc_debug.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `./libsc.a(libsc_str.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `./libsc.a(libsc_cfg_common.o)' is incompatible with i386:x86-64 output
我以前是ubuntu 12.04,那时候只要装一下ia32-libs就ok了.但是,貌似从ubuntu 13.10之后就没有ia32-libs了.于是我就Orz了...求大神指点...
看下这个是不是你需要的。
--- 共有 1 条评论 ---
添加了源之后是可以apt-get install ia32-libs了,但是我的问题还是没有解决=.= 在make的时候还是会报错:/usrbin/ld: i386 architecture of input file './libsc.a' is incompatible with i386:x86-64 output
64位系统下执行 dpkg -l libc6 你会看到&libc6:amd64
32位libc6对应的就是libc6:i386 apt-cache show libc6:i386
比如64位Ubuntu安装32位的WPS的时候就需要安装32位的libc6 sudo apt-get install libc6:i386
libc6:amd64和libc6:i386的库位置: /lib/x86_64-linux-gnu/libc.so.6 /lib/i386-linux-gnu/libc.so.6
--- 共有 1 条评论 ---
谢谢,不过还是不行额... 我按照您说的安装了libc6:i386,而且在/lib/i386-linux-gnu/下也看到了一推.so文件,当然也包括libc.so.6
. 不过我在编译我程序的时候依旧出现了上面的错误...
同好奇,今天也碰到了
--- 共有 4 条评论 ---
: 我搞定了!!!你可以参考我写的博客,希望对你有帮助.http://andycoder.me/fix-32bug-under-ubuntu1404/
: 你试试make clean一下 然后重新make, 还是不行的话,那试试在编译的时候加上`-m32`参数
: =。= 伤心。。。失败了
你可以试一下
提供的办法: /ukylin/forum.php?mod=viewthread&tid=5107&highlight=ia32 虽然对我无效,但是说不定对你有帮助~ Good luck
为什么运行sudo apt-get install ia32-libs不行?
--- 共有 1 条评论 ---
没有这个包...
上次玩android,配置环境也遇到了这个问题。你换成中科大的源就可以了,我也是这样解决的。
--- 共有 1 条评论 ---
我现在就是中科大的源呀, http://mirrors./ubuntu
切换成12.04的源把这个32位运行库安装好 再切换回去
--- 共有 3 条评论 ---
: 你去搜索下ubuntu换源就是了
额..不好意思,我不大会额,能说一下具体命令么? 谢谢了~
引用来自“agultiga”的评论为什么运行sudo apt-get install ia32-libs不行?andy :~/project/gemini$ sudo apt-get install ia32-libs
[sudo] password for andy:&
Reading package lists... Done
Building dependency tree & & &&
Reading state information... Done
Package ia32-libs is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
& lib32z1 lib32ncurses5 lib32bz2-1.0
E: Package 'ia32-libs' has no installation candidate
sudo apt-get install apt-file -y && apt-file update &&& apt-file search xxx.so 搜索你需要的库文件
/questions//androids-aapt-not-running-on-64-bit-ubuntu-13-10-no-ia32-libs-how-can-i-fix
--- 共有 3 条评论 ---
: 恩恩,我现在ia32-libs已经安装了,但是程序还是编译不过。不过加了-m32参数之后就没问题了,但是在运行时又开始出错了,哎。。我还是换回ubuntu12.04(32bit)吧。。T_T
: 试试上面讲的apt换源,换回12.04的源,安装后再换回14.04的源。/etc/apt/source.list
人家make clean 再make一下就好了,真是...太欺负人了...可是我不是啊..T_T
我今天总算把这个问题搞定了,特地来回答自己的问题...希望能对遇到相同问题的人有帮助,我的方法是:
sudo apt-get install libc6:i386
cd /etc/apt/sources.list.d
echo &deb /ubuntu/ raring main restricted universe multiverse& &ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
rm /ia32-libs-raring.list
apt-get update
sudo apt-get install gcc-multilib
我也不知道这里的packages是不是都要装,反正我是都装了...最后,在用gcc编译的时候需要添加`-m32`参数,例如
gcc -m32 -o hello helloworld.c
再make clean, make一下吧, Good luck friends :)
Ps: 我的环境是 :Ubuntu 14.04-64bit(Trusty Tahr), gcc version 4.8.4 另外,我也写了一篇博文
--- 共有 2 条评论 ---
哭咯哦wwwwww
哈明明明明}

我要回帖

更多关于 ubuntu 64 ia32 libs 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信