- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Qsim 上测试我的 Verilog 代码。当我打开 Qsim 并尝试打开我的项目时,它给了我一个错误 bad option "-readonly": must be -group, -owner, or -permissions
.我不知道这个错误是什么意思,我不知道如何解决它。如果有人可以帮助我,那就太棒了。
我在使用 Quartus 2 v12.0SP2 的 64 位 Ubuntu 12.04 计算机上。
最佳答案
有点谷歌搜索说这可能是 TCL 脚本错误消息。添加 QSIM 和报价
我受到了打击,但可以访问 Altera 论坛文件(关于
数据库错误)。
我从谷歌缓存中得到了这个[Qsim Linux? [存档] - Altera 论坛]( http://www.alteraforum.com/forum/archive/index.php/t-32358.html .
gPaiva
October 20th, 2011, 08:53 PM
Hi i am new to FPGAs , and tried to install it on linux , quartus runs fine,
but i need a simulation . i tried type at shell quartus_sh -qsim , the qsim
opened but when i try open a project i get this result:
img820.imageshack.us/img820/673/capturadetelaf.png (not allowed to post
links, lol :()
if u cant see the image it says : bad option "-readonly": must be -group,
-owner or -permissions
...
AnthonyWBrown
March 30th, 2012, 09:25 AM
Have you found a cure for this yet?
Actually, I found a workaround. Looks like there is a syntax problem with
the tcl script, it appears to try to clear the -readonly permissions on
the various files. My knowledge of tcl would fit on the head of a pin, but
according to the tcl documentation I found you can only do that on a Mac.
Linux allows you to do -owner and -group and -permissions, which makes
sense for linux filesystems, I guess. Anyhow, hence the error.
This -readonly thing is done in several places, but the one that causes the
problem you describe is in the "qsim:open_project" procedure. If you edit
the file quartus/common/tcl/apps/qsim/qsim_script.tcl and go down to line
1413 or so you should find:
file attributes db -readonly 0
comment this out by putting a # in front and save it and you're good to go.
If you feel keen, you could find the other places the file attributes
-readonly function is called and comment them out, too. If you were feeling
super keen, you could fix the tcl to use something cross-platform compatible
and submit a patch to Altera.....
Hope this helps.
A/B
nigelg
August 17th, 2012, 07:04 AM
thanks for the workaround, just got clobbered by it.
something like this works as a patch, a bit long winded.
#######################################
set my_plat [lindex $tcl_platform(os) 0]
if {[string equal $my_plat "Linux"]} {
if {[file writable db] == 0} {
# not writable so get current permissions
set myperms [file attributes db -permissions]
#set user write permissions leaving rest unchanged
set myperms [expr $myperms | 0200]
file attributes db -permissions $myperms
}
} else {
# hopefully it's windoze
file attributes db -readonly 0
}
########################################
My tcl is fairly limited so there are probably better ways to do it.
nigelg
August 17th, 2012, 07:16 AM
oops, wrong draft,
set myperms [expr $myperms | 0200]
should read
set myperms [expr $myperms + 0200]
haulisson
September 18th, 2012, 03:46 PM
Hi guys,
Its solutions were very ingenious, but I do not know much Tcl script. So,
could someone tell where I put this patch proposed by nigelg.
Best Regards
nigelg
October 15th, 2012, 08:13 AM
Hi,
find the lines containing
file attributes db -readonly 0
as described in an earlier post, comment out the line and replace with the
correct version of my patch. You will need to do this for each original
occurence of the line.
HTH
Nigel
When installing Qsim an error (bad option "-readonly": must be-group, or-permissions-owner) can occur when opening the project file generated in Quartus II. The fix is to open the file quartus / common / tcl / apps / Qsim / qsim_script.tcl and comment lines:
699 # file attributes $ Qsim :: project_dir / Qsim / $ Qsim :: project_name.sim.vwf-readonly 1
812 # file attributes $ Qsim :: project_dir / Qsim / $ Qsim :: project_name.sim.vwf-readonly 1
1413 # file attributes db-readonly 0
SOURCE: http://www.alteraforum.com/forum/archive/index.php/t-32358.html
关于ubuntu - 尝试在 Ubuntu 12.04LTS 上运行 Qsim 时出现 "bad option -readonly"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21650750/
我想升级 Azure ML 中计算实例附带的默认 Ubuntu 版本。 有人有安全升级到最新 LTS 的指南吗? 最佳答案 您想要这样做有什么具体原因吗? 由于存在一些严重依赖项( https://l
node:lts-alpine3.14 和 node:lts-alpine 有什么区别?我应该将哪一个用于 Node 后端 API? 我想将其中一张图片用于我的 Node 后端 API,如下所示:表达
node:lts-alpine3.14 和 node:lts-alpine 有什么区别?我应该将哪一个用于 Node 后端 API? 我想将其中一张图片用于我的 Node 后端 API,如下所示:表达
从 Ubuntu 10.04LTS 升级到 12.04LTS 时,我们保留了所有必要的配置文件(svn、trac、apache2)。起初一切似乎都运行良好。我们仍然可以使用最新版本的 subclips
在我当前运行 Ubuntu 14.04 的 Office PC 中,没有任何交换分区(安装时安装程序未创建交换空间)。现在我想创建一个交换空间分区。我知道有一个创建交换文件或交换分区的过程。访问htt
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
我正在使用 Jenkins 滚动发布,我试图转移到 Jenkins 的 LTS 版本,但我没有找到从滚动发布转移到 LTS 版本的直接方法。 我的旧 Jenkins 中有很多配置,所以无法安装新的 J
是否有一个 stack 命令可以运行来获取我的系统上通过 stack 安装的所有 LTS 版本的列表? 最佳答案 不确定 stack 命令,但您可以使用 bash 命令来完成: $ ls ~/.sta
我在维基百科上查了一下,那里只有一行。任何人都有更详细的描述吗? Ubuntu 使用这种表示法发布他们的操作系统,但我无法找到关于它的含义/包含的详细描述。我已经阅读了 Ubuntu 表示法,但需要更
vsftpd是常用的ftp server端,网上文档很多。能用的很少,耽误了很多时间。 现记录一次安装配置的过程: 环境: Ubuntu 14.04.2 LTS 安装: sudo ap
我已经在Windows上从here安装了nvm,但是正在运行nvm install lts打印: lts.0.0 Node.js vlts.0.0 is only available in 32-b
堆栈文档提供了使用 ghcjs 进行编译的示例配置 https://docs.haskellstack.org/en/stable/ghcjs/ 。但最新的例子是 lts-7.19。我想配置堆栈以使用
我对“使用 Java 需要付费吗?”的理解的 Java programming language Free 是我可以使用 OpenJDK(版本 11)构建,前提是我不需要 LTS,因为 OpenJDK
Java 17 更新了,作为一个 10 年的 Java 程序员,还是有亿点点兴奋的,Kotlin 的群里面也是各种讨论 Java 的新特性。 我记得五六年前,谈论起当时刚刚进入人们视野不久的 Ja
本文整理了Java中com.github.ltsopensource.zookeeper.lts.ZkInterruptedException类的一些代码示例,展示了ZkInterruptedExce
本文整理了Java中com.github.ltsopensource.zookeeper.lts.ZkException类的一些代码示例,展示了ZkException类的具体用法。这些代码示例主要来源
我的 mongodb 安装不是很好。我在/etc/apt/sources.list 中添加了一个位置,但我收到一条错误消息,指出 i386 包和 amd64 包之间的条目中有重复项?我尝试了更新,但它
我正在尝试在 ubuntu 10.04 上安装 CoffeeScript 。它永远挂着。这是的输出 npm 安装 CoffeeScript --verbose: npm info it worked
我正在考虑在我的下一个项目中使用 Laravel 6.5,但是,我想确保它会被视为一个长期支持版本。 Laravel's documentation for version 6.x有一张表将版本 6
已结束。此问题不符合 Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 a specific programming problem, a software a
我是一名优秀的程序员,十分优秀!