安装ansys14 时出现 you need to be rootan administrator to install the prerequisite,导致安装不上

Requirements for Running Symfony (Symfony Docs)
Table of Contents
Be trained by SensioLabs experts (2 to 6 day sessions -- French or English).
Peruse our complete Symfony & PHP solutions catalog for your web development needs.
Requirements for Running Symfony
3.3 version
Maintained
Unmaintained
Requirements for Running Symfony
Symfony 3.3 requires PHP 5.5.9 or higher to run, in addition to other minor
requirements. To make things simple, Symfony provides a tool to quickly check if
your system meets all those requirements.
Beware that PHP can define a different configuration for the command console and
the web server, so you need to check requirements in both environments.
Checking Requirements for the Web Server
Symfony includes a config.php file in the web/ directory of your project.
Open that file with your browser to check the requirements.
Once you've fixed all the reported issues, delete the web/config.php file
to avoid leaking internal information about your application to visitors.
Checking Requirements for the Command Console
Open your console or terminal, enter in your project directory, execute this
command and fix the reported issues:
2$ cd my-project/
$ php bin/symfony_requirements
This work, including the code samples, is licensed under a
News from the Symfony blog
November 15, 2017
November 13, 2017
November 13, 2017
In the news
Symfony 3 Certification now available in 4,000 centers around the world!
Upcoming training sessions
Cologne - November 22, 2017
Lyon - December 4, 2017
Lyon - December 4, 2017
Symfony& is a trademark of Fabien Potencier. .
Follow SymfonyCentOS6.4&安装oracle&11g&遇到的各种问题
最近在CentOS6.4安装
oracle,先安装的10g,各种的不通过,郁闷的要命,后面直接又安装11G.
cpio.gz文件的解压
从官网上下载的10201_database_linux_x86_64.cpio.gz,文件需要解压。
1、先解压.gz&& #gunzip&10201_database_linux_x86_64.cpio.gz
2、第一步解压之后 文件名称变成 10201_database_linux_x86_64.cpio
3、再解压.cpio&& #cpio&-idmv&10201_database_linux_x86_64.cpio
问题二 报错信息:libXp.so.6
/lib/i386/libawt.so:&libXp.so.6:&cannot&open&shared&object&file:&No&such&file&or&directory"
解决办法:建议直接把centos接入互联网,然后yum,从网上下载好多各种包,都没有这个来的快。比如上面的报错,直接#yum
install libXp.so.6,直接就可以进行网上匹配安装。
问题三、安装页面中文乱码
oracle 用户登录在执行./runInstaller之前设置语言
#export&LC_ALL=en_US.UTF-8
&&&&&&#LANG=en_US&./runInstaller
这样就可以看到安装文件是英文版了,就不再是口口口了。
问题四、swap安装不通过
This is a prerequisite condition to test whether sufficient total
swap space is available on the system.&(more
Expected Value
&:&15.64GB
Actual Value
问题原因是没有swap空间不足导致,需要扩大交换空间
&&解决:1、使用dd命令创建一个swap分区
&&&&&&&&&&2、#dd&if=/dev/zero&of=/home/swap&bs=1024&count=
3、格式化刚才创建的分区
4、# mkswap
/home/swap
5、再使用swapon命令把这个文件分区变成swap分区
6、#swapon /home/swap
7、(关闭SWAP分区的命令为:#swapoff
/home/swap)
8、再用free -m 查看已经扩容的了swap分区。
9、为了能够让swap自动挂载,需要修改etc/fstab文件,用vi /etc/fstab
10、在文件末尾加上 /home/swap swap swap default 0 0
11、这样就算重启系统,swap分区也不用手动挂载了
& 12、但是我感觉好像我重启了系统
swap就没有了,然后我又百度了一下,要执行下面一段命令&
#echo&& "swapon&
/home/swap" &&
/etc/inittab&
13、然后在看 vi 看下 /etc/inittab
&&&&&&&&&&14、最后一行是swapon&
/home/swap,这样就万事大吉了。
问题五、vi使用
问题六、安装rpm包的时候老是说键值堆错误,Header V3 DSA signature: NOKEY, key
&解决办法:rpm&-ivh&db4-devel-4.3.29-9.fc6.i386.rpm&--force&--nodeps
问题七、semopm&
验证不通过
This&is&a&prerequisite&condition&to&test&whether&the&OS&kernel&parameter&"semopm"&is&properly&set.&(more&details)
Expected&Value&:&100
Actual&Value&:&32
解决办法:
编辑/etc/sysctl.conf文件,添加
kernel.sem=250&32000&100&128
启用刚所做的变更。&输入命令:&#&/sbin/sysctl&-p
问题八、file-max 验证不通过
This&is&a&prerequisite&condition&to&test&whether&the&OS&kernel&parameter&"file-max"&is&properly&set.&(more&details)
Expected&Value
&:&6815744
Actual&Value
This&is&a&prerequisite&condition&to&test&whether&the&OS&kernel&parameter&"ip_local_port_range"&is&properly&set.&(more&details)
Expected&Value
&:&between&9000&&&65500
Actual&Value
&:&between&9000&&&65000
This&is&a&prerequisite&condition&to&test&whether&the&OS&kernel&parameter&"aio-max-nr"&is&properly&set.&(more&details)
Expected&Value
&:&1048576
Actual&Value
&解决办法:修改内核文件
启用刚所做的变更。&输入命令:&#&/sbin/sysctl&-p
fs.aio-max-nr&=&1048576
fs.file-max&=&6815744
kernel.shmall&=&2097152
kernel.shmmax&=&
kernel.shmmni&=&4096
kernel.sem&=&250&32000&100&128
net.ipv4.ip_local_port_range&=&9000&65500
net.core.rmem_default&=&262144
net.core.rmem_max&=&4194304
net.core.wmem_default&=&262144
net.core.wmem_max&=&1048576
已投稿到:
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。installer - Visual Studio 2013 RTM Setup Failed - The form specified for the subject is not one supported or known by the specified trust provider - Stack Overflow
Learn, Share, Build
Each month, over 50 million developers come to Stack Overflow to learn, share their knowledge, and build their careers.
Join the world’s largest developer community.
Display name
Email address
By registering, you agree to the
System Requirements:
Supported operating systems
Windows 7 SP1 (x86 and x64)
Windows 8 (x86 and x64)
Windows 8.1 (x86 and x64)
Windows Server 2008 R2 SP1 (x64)
Windows Server 2012 (x64)
Windows Server 2012 R2 (x64)
Required components
Internet Explorer 10
Hardware requirements
1.6 GHz or faster processor
1 GB of RAM (1.5 GB if running on a virtual machine)
10 GB of available hard disk space
5400 RPM hard disk drive
DirectX 9-capable video card that runs at 1024 x 768 or higher display
resolution
I'm trying to install VS 2013 Ultimate on top of VS 2013 RC and the following error messages are preventing the installation.
The form specified for the subject is not one supported or known by
the specified trust provider.
The failed components are:
Microsoft Visual Studio 2013 VsGraphics Helper
Microsoft Visual C++ 2013 Core Libraries
Microsoft Visual C++ 2013 x86 Libraries
Microsoft Visual C++ 2013 x64 Libraries
Microsoft Visual C++ 2013 ARM Libraries
Microsoft Team Foundation Server 2013 Preview Object Model (x64)
Microsoft Team Foundation Server 2013 Preview Object Model Language
Pack (x64) - ENU
Microsoft .NET Framework 4.5.1 Preview Multi-Targeting Pack (ENU)
Microsoft .NET Framework 4.5.1 Preview Multi-Targeting Pack for
Windows Store Apps (ENU)
Microsoft .NET Framework 4.5.1 Preview Multi-Targeting Pack Language
Pack - enu
This error means that Windows does not recognize the input file as something it is able to affix a digital signature on.
Possible workaround
Using SetReg.exe
to disable Certificate Revocation List checking.
setreg 3 FALSE
setreg 9 FALSE
Reference:
I can try the workaround above to sort the problem, but i was in belief that VS 2013 RC can be easily updated?
VS 2013 can be installed side by side with previous versions of Visual
Studio or, if you have a VS 2013 pre-release, it can be installed
straight over
top of the pre-release.
I've tried using web installer or downloading ISO image again, with no success, as possible solutions in related sources.
8,76734675
then choose Web Installer (the first download option)
If you have already tried installing VS 2013 using ISO Installer you must reboot before trying the Web Installer.
8,76734675
Try to verify whether you have completely downloaded installer, in case if you are using ISO file. I've checked my own with the same problem, and it was broken. Sha hash was different.
3,39212458
I had the same issue while installing RTM version. I replaced the files from the RC version I had downloaded earlier. This is what I did to fix the issue
Uninstall the failed version of 2013 from control panel -> Uninstall programs
Restart the computer
Extract the files from the ISO to a local folder
Replace the the folder "Packages/vsGragphics Helper..." with the copy from RC version ISO.
Re-run the setup again from local folder.
One thing that can cause this error is if the setup files have not been successfully extracted from the ISO.
In the case I've just dealt with, a number of setup files were 0 bytes in length.
The problem can be worked around by deleting the affected folder(s) in "packages" so that the installer will download the missing content.
Or fixed by identifying the cause of the corruption, e.g., you may need to use different software to extract the contents of the ISO, or the ISO itself may have been corrupted.
For me the issue resolved by getting the ISO again. Do check if your ISO is broken using its SHA.
This means the vsgraphics_helperbits.MSI is corrupt. I was able to resolve my issue by navigating to ( \packages\vsgraphics_helper\ ) and renaming (amd64) folder to (amd6488s) and for some reason adding 888s to the folder name makes the installer reach out to the internet to download the vsgraphics that are broken in the ISO.
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Not the answer you're looking for?
Browse other questions tagged
Stack Overflow works best with JavaScript enabledDownload Aptana Studio 3.6.1
Aptana Studio 3.6.1 is our code base and complete environment that includes extensive
capabilities to build Ruby and Rails, PHP, and Python applications, along with complete HTML, CSS and JavaScript editing.
You are about to download:
Standalone Version
Eclipse Plug-in Version
System Requirements
Dev Skills to Pay the Dev Bills
Looking for a different OS, download format, or architecture?
Operating System
Architecture
Please provide us your name and email address so that we can get a
better sense for who uses our product. We may use this email to occasionally communicate product and company news.
Email Address
Copyright & 2005 – 2014 Appcelerator, Inc.

我要回帖

更多关于 ansys antype 的文章

 

随机推荐