无法在 Plan 9 acme 中创建文件
我在 VirtualBox 中运行 Plan 9 操作系统。主机操作系统是 Fedora 14。
当我运行 acme hello.c
时,出现错误:
can't open hello.c:'hello.c' file does not exist
我正在遵循本指南 新手指南。
I'm running Plan 9 OS in VirtualBox. The host OS is Fedora 14.
When I run acme hello.c
there's an error saying:
can't open hello.c:'hello.c' file does not exist
I'm following this guide newbie-guide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 Acme 中创建新文件:
New
命令。Put
命令。或者
touch hello.c
。touch hello.c
,即将鼠标指针移动到短语之前,按住鼠标中键,将鼠标移动到短语末尾,释放按钮。要在 Acme 中打开现有文件:
一旦您掌握了一些基本概念,Acme 就会变得非常直观。
To create a new file in Acme:
New
command at the top of any column.Put
command at the top of the new window.or
touch hello.c
somewhere.touch hello.c
using the middle mouse button, i.e. move the mouse pointer just before the phrase, press and hold the middle mouse button, move the mouse to the end of the phrase, release the button.To open an existing file in Acme:
Acme is really intuitive once you grasp a few basic ideas.
作为一种快速解决方法,您应该能够创建该文件,然后对其进行编辑:
这在我的系统上运行良好。
As a quick workaround, you should be able to create the file and then edit it:
which works fine on my system.