Reputation: 2461
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.
Upvotes: 5
Views: 2580
Reputation: 7348
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.
Upvotes: 8
Reputation: 3050
As a quick workaround, you should be able to create the file and then edit it:
term% touch hello.c
term% acme hello.c
which works fine on my system.
Upvotes: 0