Results 1 to 9 of 9

Thread: Autorun Commands in Terminal?

  1. #1
    Join Date
    Sep 2011
    Location
    Minecraftia
    Beans
    Hidden!

    Autorun Commands in Terminal?

    Hello there.
    Here's what I'm trying to do, but don't know how:
    1. Click on a launcher on my desktop
    2. Terminal opens up
    3. runs command cd ~/Minecraft/server
    4. runs command java -Xms1504M -Xmx1504M -jar minecraft_server.jar nogui

    Basically: I'm trying to create a launcher that will launch terminal, change directories in the terminal, and then run a java program in the terminal (minecraft server).

    Is there a way to do this?

  2. #2
    Join Date
    Mar 2010
    Location
    Dublin, Ireland
    Beans
    Hidden!
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Autorun Commands in Terminal?

    Hi,

    Yes, you can do this. Firstly, create a shell script that will launch the Minecraft server. Open a text editor and create a file with the contents:

    Code:
    #!/bin/bash
    
    java -Xms1504M -Xmx1504M -jar ~/Minecraft/server/minecraft_server.jar nogui
    Save this to your home directory as minecraft.sh

    Open a terminal window and type:

    Code:
    chmod +x minecraft.sh
    Now create a launcher on your desktop. To do this you need the gnome-desktop-item-edit app.

    Code:
    sudo apt-get install --no-install-recommends gnome-panel
    gnome-desktop-item-edit ~/Desktop/ --create-new
    Give the launcher a name, and browse to minecraft.sh as the command. I've tested this and it works fine on my machine
    Matt
    blog.mattrudge.net for extra helpings of geeky Ubuntu goodness
    Get the Ubuntu Weekly Newsletter

  3. #3
    Join Date
    Nov 2009
    Beans
    Hidden!
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: Autorun Commands in Terminal?

    Instructions are reasonable but here is a little explanation:

    This is a script that you will make:
    Code:
    #!/bin/bash
     
    java -Xms1504M -Xmx1504M -jar ~/Minecraft/server/minecraft_server.jar nogui
    This will make the script executable:
    Code:
    chmod +x minecraft.sh

    Now create a launcher on your desktop. To do this you need the gnome-desktop-item-edit app.

    Code:
    sudo apt-get install --no-install-recommends gnome-panel
    gnome-desktop-item-edit ~/Desktop/ --create-new
    Give the launcher a name, and browse to minecraft.sh as the command. I've tested this and it works fine on my machine
    this one i don't think is necessary in Xubuntu. Also you can just move the script to your /home/desktop folder and it should appear on your dektop. or you can simply create launcher with right click and just point to it.
    Read the easy to understand, lots of pics Ubuntu manual.
    Do i need antivirus/firewall in linux?
    Full disk backup (newer kernel -> suitable for newer PC): Clonezilla
    User friendly full disk backup: Rescuezilla

  4. #4
    Join Date
    Sep 2011
    Location
    Minecraftia
    Beans
    Hidden!

    Re: Autorun Commands in Terminal?

    Ok, that works! I just moved the file to the desktop, and it runs all right!
    But it seems to create new server files (server.properties, whitelist.txt, etc.) whenever I run it from that script, either in my home directory or my desktop.

    Is there a way I can redirect it to where the real server files are (~/Minecraft/server)?

    Also, something else I noticed, although it's not such a big deal: the default for clicking on it just tells it to execute, which doesn't open up any terminal or anything, so I can't do server commands (or stop the server...). Is there a way to change it to open in terminal by default?

    Lechien73, your method works great too. Except I run into the same problems - I moved minecraft.sh to my server folder, and created the launcher successfully, and when I clicked it, and logged into minecraft, the server ran great. But once again, it created new server files in my home directory, much like mastablasta's method did. I did, however, figure out how to have it open up in terminal - I edited the launcher in notepad. My first question above stands.
    Last edited by DaimyoKirby; November 25th, 2011 at 03:27 PM.

  5. #5
    Join Date
    Mar 2010
    Location
    Dublin, Ireland
    Beans
    Hidden!
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Autorun Commands in Terminal?

    Quote Originally Posted by DaimyoKirby View Post
    Ok, that works! I just moved the file to the desktop, and it runs all right!
    But it seems to create new server files (server.properties, whitelist.txt, etc.) whenever I run it from that script, either in my home directory or my desktop. Is there a way I can redirect it to where the real server files are (~/Minecraft/server)?

    Also, something else I noticed, although it's not such a big deal: the default for clicking on it just tells it to execute, which doesn't open up any terminal or anything, so I can't do server commands (or stop the server...). Is there a way to change it to open in terminal by default?

    Edit: I'm gonna try using lechien73's way, just in case that solves the above issues.
    If you put the minecraft.sh file in the ~/Minecraft/server folder, and create a launcher using the method I gave above, then the config files will be created in the correct folder.

    Also, when you create the launcher, select "Application in Terminal" as the type. That will allow you to enter server commands in the terminal window.
    Matt
    blog.mattrudge.net for extra helpings of geeky Ubuntu goodness
    Get the Ubuntu Weekly Newsletter

  6. #6
    Join Date
    Nov 2009
    Beans
    Hidden!
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: Autorun Commands in Terminal?

    Quote Originally Posted by DaimyoKirby View Post
    Ok, that works! I just moved the file to the desktop, and it runs all right!
    But it seems to create new server files (server.properties, whitelist.txt, etc.) whenever I run it from that script, either in my home directory or my desktop. Is there a way I can redirect it to where the real server files are (~/Minecraft/server)?
    move it to minecraft server and then put just the launcher (i.e. shortcut) in desktop.

    Also, something else I noticed, although it's not such a big deal: the default for clicking on it just tells it to execute, which doesn't open up any terminal or anything, so I can't do server commands (or stop the server...). Is there a way to change it to open in terminal by default?
    this one i don't know i am kind of new in commands... but i found this:
    http://stackoverflow.com/questions/3...ript-execution

    should work if you replaced it with xterminal or xterm or what is called in XFCE. i forgot. LOL, just started using XFCE myself.

    and this: http://ubuntuforums.org/showthread.php?t=1015654

    ---
    lechien73's advice might solve the issues, however i believe (not sure) that this will also install some other stuff that doesn't need to be installed. I think his commands makes a lot of sense if you were using regular Ubuntu.
    Read the easy to understand, lots of pics Ubuntu manual.
    Do i need antivirus/firewall in linux?
    Full disk backup (newer kernel -> suitable for newer PC): Clonezilla
    User friendly full disk backup: Rescuezilla

  7. #7
    Join Date
    Sep 2011
    Location
    Minecraftia
    Beans
    Hidden!

    Re: Autorun Commands in Terminal?

    Lechien73 -
    Sorry, there's been a little miscommunication. It edited my post, and you hadn't refreshed afterwards; that isn't your fault. Anyway, yes, I already tried moving it to ~/Minecraft/server, and it still created new files in home directory. I did, however, open up the launcher in Leafpad, and edited it to open in terminal.

    Mastablasta -
    I don't really understand much of what they were talking about...
    I did try the first suggestion in the ubuntu forums post you linked, although I don't know the command to open a terminal - I'm using Terminal Emulator, which is xubuntu's default.
    I did, however, successfully create a launcher, and it runs all right, and I checked the box to have it run in terminal, so now I'm able to control it, but it still creates new files in the home directory. I made sure the "working directory" was set to ~/Minecraft/server, too, although I don't know what the working directory is supposed to do/be.

  8. #8
    Join Date
    Sep 2011
    Location
    Minecraftia
    Beans
    Hidden!

    Re: Autorun Commands in Terminal?

    AMAZING!!!
    I don't know why, I don't know how, but I got it to work.
    Remember that problem I was having with the .sh file not using my server files in ~/Minecraft/server, and instead created its own?
    I decided to place the launcher on my panel/dock thing, where I keep all my other programs that I regularly use, and when I clicked on it, and it opened up terminal, I noticed it said it loaded a map that was being used by my original server files. So I went and checked, and voila! It's running my original server!

    Thanks to both of you for all you help - I couldn't have done it without you!

  9. #9
    Join Date
    Mar 2010
    Location
    Dublin, Ireland
    Beans
    Hidden!
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Autorun Commands in Terminal?

    Great stuff...delighted we could help
    Matt
    blog.mattrudge.net for extra helpings of geeky Ubuntu goodness
    Get the Ubuntu Weekly Newsletter

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •