How do i open console in minecraft server

i searched a lot all people say ./mcserver console but how do i do it can someone explain i wana /op my self

1 Reply

i searched a lot all people say ./mcserver console but how do i do it

The notation

./mcserver console

assumes the program mcserver is in the current working directory (cwd) of your shell. If that's not the case, the shell is going to return the error: ./mcserver: No such file or directory.

There are two ways to fix this:

  1. cd to wherever mcserver is first and then run it:
cd /the/path/to/where/mcserver/lives
./mcserver console

or

  1. Invoke mcserver using it's complete path:
/the/path/to/where/mcserver/lives/mcserver console

-- sw

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct