<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Scaine.net - Latest Comments</title><link>http://scainenet.disqus.com/</link><description></description><atom:link href="https://scainenet.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 08 Jul 2022 08:10:45 -0000</lastBuildDate><item><title>Re: Running the Elite:Dangerous Market Connector on Linux</title><link>http://www.scaine.net/site/2020/10/running-the-elitedangerous-market-connector-on-linux/#comment-5910804911</link><description>&lt;p&gt;Ty for taking the time write all this down!&lt;br&gt;Helped me a lot!&lt;br&gt;Works perfectly btw.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zoltán Horváth</dc:creator><pubDate>Fri, 08 Jul 2022 08:10:45 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-5780816303</link><description>&lt;p&gt;Thanks so much for posting this, it's a huge lifesaver for my little vanilla server!&lt;br&gt;Couple things tho, I don't think the line "rm -f minecraft.tar.gz.24" is needed. The "mv fc-backup23.tar.gz fc-backup24.tar.gz" should override 24, if it exists, so there's no need to remove it first. Plus the filename is misspelled in that line anyway. ;)&lt;br&gt;The screen commands needed an additional x tag, so I can keep the server terminal open if I want, and no space after save-all/off/on:&lt;br&gt;&lt;code&gt;screen -R mcserver1 -xX stuff "save-all$(printf '\r')"&lt;/code&gt;&lt;br&gt;Oh and btw, instead of just @daily or @hourly in the crontab, I do even hours using:&lt;br&gt;&lt;code&gt;0 */2 * * * /home/MC_server/HOURLYBACKUP &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;/code&gt;&lt;br&gt;But still save 24, so I end up with 2 days worth of backups, in case I forget to check things one day.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">OkinKun</dc:creator><pubDate>Mon, 07 Mar 2022 01:35:20 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-4904272757</link><description>&lt;p&gt;Hi ! I made a server on Ununtu in termux on Anfroid. I wanted to put a world of my own. How can you do this??&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Akshay Kumar</dc:creator><pubDate>Thu, 07 May 2020 00:40:06 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-2988191932</link><description>&lt;p&gt;Given what I said yesterday.  I took the ideas in your script and made it a little cleaner with both scripts rolled into one. This way the daily is done at the same time while world saving is down.  My own server is just default so I really am only interested in backing up the world level myself.&lt;/p&gt;&lt;p&gt;#!/bin/bash&lt;/p&gt;&lt;p&gt;#Check if the minecraft server is running&lt;br&gt;RESULT=`ps aux | grep "[m]inecraft_server.jar"`&lt;br&gt;if [ "${RESULT:-null}" = null ]; then #if the RESULT from the previous command is null&lt;br&gt;    echo "Minecraft Server is not running, not backing up."&lt;br&gt;    exit 1&lt;br&gt;else&lt;br&gt;    #Let users know of the backup and turn off world saving temporarily&lt;br&gt;    /usr/local/bin/mcrcon -H localhost -p password "say Backup starting. World no longer saving.." save-off save-all&lt;br&gt;    sleep 3&lt;/p&gt;&lt;p&gt;    #change working directory to my hourly backup folder&lt;br&gt;    cd /srv/minecraft-server/mcbackup/hourly&lt;/p&gt;&lt;p&gt;    #Rotate hourly backups&lt;br&gt;    for (( X=23; X&amp;gt;=0; X-- )); do #Go though the iterations,&lt;br&gt;        if [ -e World-Hour-$X.tar.gz ]; then #but only execute the following command if the file exists&lt;br&gt;            mv World-Hour-$X.tar.gz World-Hour-$(($X+1)).tar.gz&lt;br&gt;        fi&lt;br&gt;    done&lt;/p&gt;&lt;p&gt;    #do level backup&lt;br&gt;    cd ../../&lt;br&gt;    tar -cpvzf mcbackup/hourly/World-Hour-0.tar.gz World&lt;br&gt;    cd mcbackup/hourly&lt;/p&gt;&lt;p&gt;    #Copy newest backup to daily if it's 12 am with datestamp&lt;br&gt;    H=$(date +%H) #get hour&lt;br&gt;    if [ "$H" == "00" ]; then&lt;br&gt;        cp -f ./World-Hour-0.tar.gz ../daily/World-Daily-$(date -d "today" +"%Y%m%d").tar.gz&lt;br&gt;    fi&lt;/p&gt;&lt;p&gt;    #Let users know the backup is done and re-enable world saving.  Also relay the time, because why not.&lt;br&gt;    /usr/local/bin/mcrcon -H localhost -p password save-on "say Backup complete. World now saving." "say Time is now $H:00"&lt;br&gt;fi&lt;br&gt;exit 0&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joshua Pettus</dc:creator><pubDate>Sun, 06 Nov 2016 15:56:55 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-2987241980</link><description>&lt;p&gt;Thank-you for this tutorial, a lot of good ideas here, even if it's a couple years old. I just wanted to add my thoughts though.  First, screen is great for terminal multiplexing but tmux much newer and far better for that sort of thing and I can't recommend it enough.  (I run my server in a runlevel 3 equivalent with ubuntu's systemd and it's a must for multitasking)&lt;/p&gt;&lt;p&gt;Second, if you are going to run a server all the time, terminal sessions are great and all, but they arn't meant to be used that way.  Far better would be to setup an init daemon to control the minecraft server.  Of course how do you control the server without a terminal session?  The answer is setup rcon for the server.  There is a commandline application called mcrcon which is great for the client side of this and can send both single commands and run a whole session in a terminal.  rcon on the minecraft server listens on a seperate port from the rest of the server and can be easily locked down in the iptable firewall so no one can connect to it but the localhost.  Just tell mcrcon to connect to localhost with your commands and you are good to go.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joshua Pettus</dc:creator><pubDate>Sun, 06 Nov 2016 01:04:46 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-2786967634</link><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I'm a little late to this post but I really liked it I didn't realize AndroAndrod these type of capabilities. What I was thinking on the other hand since the Wi-Fi connection is slow is using a Nexus 7 tablet as a GPS instead of my phone the larger screen would be much better for navigation. It would be able to reroute on Google Maps as long as it had an internet connection I could disable all the other apps and updates and all it would be used for is a GPS. I'm going to try it out soon and see how it works with connecting to two Bluetooth devices at the same time that being my hands-free device in my car. With Google advancing Android auto into a standalone app I am wondering how this would work on my Nexus 7 tablet. This would be a great way to add Android auto into your car and minimize on the cost. However I am waiting on Google to implement Android auto as a standalone app.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Szymonurai</dc:creator><pubDate>Sat, 16 Jul 2016 15:53:19 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-2713126974</link><description>&lt;p&gt;Excellent,  I know this is an old post but very useful.  For years I used foxfi/pdanet.  Which works but not on every app.   So many times I didn't get Internet access on say "Samsung Milk music"  or  "Google play music"  but yet I'd get Internet access to play games like "Clash of clans".   This left me puzzled for years!  Since I've converted my Galaxy Note 10.1 gt-n8013 tablet to be  my  car media center, it annoyed me that I had to download all my music and podcasts instead of just streaming them and I  couldn't use Google maps with traffic updates.&lt;/p&gt;&lt;p&gt;I tried to use just the blutooth tethering but I believe the United States carrier's block the connection once you turn off the wifi on the device that is providing the Internet access.  So after reading this post I realized that if I connect the devices through foxfi/pdanet  and then pair them (Galaxy Note 10.1 to my Galaxy Note 5)  and turn on blutooth tethering and Internet access and it works perfectly!  Thanks so much! &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JG Games</dc:creator><pubDate>Sun, 05 Jun 2016 09:42:26 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-2492156874</link><description>&lt;p&gt;Just a "thank you" message. I would never have thought of that "silently fail to connect without explanation unless you activate tethering on a completely different screen" thing without the pointer in this article. Much appreciated.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carl</dc:creator><pubDate>Tue, 02 Feb 2016 11:25:15 -0000</pubDate></item><item><title>Re: Tagging JPG photos using EXIF properties</title><link>http://www.scaine.net/site/2010/01/jbrout/#comment-2348033450</link><description>&lt;p&gt;Windows only, but if others find it useful, okay. I can't vouch for that install though. I really need to research if jBrout is still usable. It's been a couple of years since I used it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Broadley (Scaine)</dc:creator><pubDate>Sat, 07 Nov 2015 18:20:02 -0000</pubDate></item><item><title>Re: Tagging JPG photos using EXIF properties</title><link>http://www.scaine.net/site/2010/01/jbrout/#comment-2348028439</link><description>&lt;p&gt;Try &lt;a href="https://code.google.com/p/jbrout/downloads/list" rel="nofollow noopener" target="_blank" title="https://code.google.com/p/jbrout/downloads/list"&gt;https://code.google.com/p/j...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Craig</dc:creator><pubDate>Sat, 07 Nov 2015 18:15:03 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-2297396439</link><description>&lt;p&gt;Internet access profile is not showing me in pair devices in my sony xperia C.why?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ajay Gavit</dc:creator><pubDate>Thu, 08 Oct 2015 18:35:33 -0000</pubDate></item><item><title>Re: Step by Step : Install a Minecraft Server on Ubuntu</title><link>http://www.scaine.net/site/2013/02/step-by-step-install-a-minecraft-server-on-ubuntu/#comment-2259499277</link><description>&lt;p&gt;This article needs to be removed.  It is no longer accurate.  Bukkit no longer (legally) exists.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">thevaliant x</dc:creator><pubDate>Thu, 17 Sep 2015 18:35:39 -0000</pubDate></item><item><title>Re: Tagging JPG photos using EXIF properties</title><link>http://www.scaine.net/site/2010/01/jbrout/#comment-2175228645</link><description>&lt;p&gt;Seems to be a dead project... The website works, but all download links are broken, as is the debian repository. Sad thing, it looked good.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jesús</dc:creator><pubDate>Wed, 05 Aug 2015 03:35:40 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-2003755584</link><description>&lt;p&gt;Help when I try to run screen it says permission denied.&lt;/p&gt;&lt;p&gt;Cannot exec '/home/stephen/minecraft_servers/caveless': Permission denied&lt;/p&gt;&lt;p&gt;Here is the command: screen -R caveless /home/stephen/minecraft_servers/caveless sh &lt;a href="http://start.sh" rel="nofollow noopener" target="_blank" title="start.sh"&gt;start.sh&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I have already tried as sudo and it doesn't work.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Caleb</dc:creator><pubDate>Mon, 04 May 2015 21:27:13 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-1761343764</link><description>&lt;p&gt;Does not work for my A1-810 too!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">wolf tatoo</dc:creator><pubDate>Sat, 27 Dec 2014 20:45:30 -0000</pubDate></item><item><title>Re: Ubuntu to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/10/ubuntu-to-android-tethering-over-bluetooth/#comment-1759727769</link><description>&lt;p&gt;I've found out that the sequence of steps is significant (on ubuntu 14.04 and Lenovo S860 at least):&lt;br&gt;first I have to set up phone as "BT hot spot", then connect devices via bluetooth and at last make a connection in NetworkManager.&lt;br&gt;If I first connect devices and then activate "BT Hotspot" connection is not established.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andrew</dc:creator><pubDate>Fri, 26 Dec 2014 12:07:16 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-1721625617</link><description>&lt;p&gt;To answer the first question - yes. My server isn't "headless", as such, but I run everything in this tutorial using "screen" commands - in other words, I might have access to a GUI, but I'm not using any GUI-based tools.&lt;/p&gt;&lt;p&gt;Regarding the second question, I'm not certain. As long as the *mineuser* account is in the group assigned to /backups/minecraft_backups, I suppose that would work?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Broadley (Scaine)</dc:creator><pubDate>Tue, 02 Dec 2014 04:32:55 -0000</pubDate></item><item><title>Re: Backing Up Your Minecraft Server in Ubuntu﻿﻿</title><link>http://www.scaine.net/site/2013/08/backing-up-your-minecraft-server-in-ubuntu%ef%bb%bf%ef%bb%bf/#comment-1720372571</link><description>&lt;p&gt;Will this crontab approach work on a headless server which might get rebooted every so often and so no one is physically typing to logon on to the server and the server has a startup script to automatically start minecraft in screen?&lt;br&gt;Second, what if the backup folder is not under /home but maybe in another folder - what permissions should I grant for that other folder? For example minecraft is here: /home/mineuser/minecraft backup folder is here /backups/minecraft_backups/&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tony</dc:creator><pubDate>Mon, 01 Dec 2014 11:10:34 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-1603281531</link><description>&lt;p&gt;suppose i have galaxy core device which is registered on some wi fi network, and i also i have other device(pc/mobile) which is not registered on wi fi. so how can share the wi fi connection to unregistered phone via Bluetooth threatening while accessing connection on registered device.....&lt;br&gt;as because if Bluetooth therning  is done the wi fi connection auto goes on swich off...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chhotu</dc:creator><pubDate>Wed, 24 Sep 2014 05:07:30 -0000</pubDate></item><item><title>Re: Android to Android Tethering over Bluetooth</title><link>http://www.scaine.net/site/2013/01/android-to-android-tethering-over-bluetooth/#comment-1575710246</link><description>&lt;p&gt;Doesn't work with Acer Iconia A1-810 Kitikat&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nero Tux</dc:creator><pubDate>Fri, 05 Sep 2014 15:11:59 -0000</pubDate></item><item><title>Re: Ubuntu Touch &amp;#8211; Early Impressions</title><link>http://www.scaine.net/site/2013/09/ubuntu-touch-early-impressions/#comment-1436288837</link><description>&lt;p&gt;Yep, well, I'm about to try UOS again, but this time on an old Nexus 4 I've acquired. I think it'll be a better experience - a combination of a further 6 months of work and the Nexus 4 being the reference platform. I'll likely to a follow up post.&lt;br&gt;Agree that there's not a lot of room for another mobile platform, but what's exciting about UOS is that it's not really a mobile platform. It's just an extension of Ubuntu to the mobile form factor. I think they're "doing it right", while everyone is still with multiple platforms - iOS/OSX, Windows Phone 8/Windows 8, Android/Chrome.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Broadley (Scaine)</dc:creator><pubDate>Sun, 15 Jun 2014 07:21:57 -0000</pubDate></item><item><title>Re: Ubuntu Touch &amp;#8211; Early Impressions</title><link>http://www.scaine.net/site/2013/09/ubuntu-touch-early-impressions/#comment-1427343326</link><description>&lt;p&gt;No comments either until this one.  That's not a good sign either.  Coming from a wasted 6 months to a year on Windows 8 apps, this would appear it could be more of the same.  I would argue we do need another mobile OS, but will admit that the big players may not let that happen (doing everything they can to kill it).&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Patrick Davidson</dc:creator><pubDate>Mon, 09 Jun 2014 15:41:42 -0000</pubDate></item><item><title>Re: Step by Step : Install a Minecraft Server on Ubuntu</title><link>http://www.scaine.net/site/2013/02/step-by-step-install-a-minecraft-server-on-ubuntu/#comment-1422282168</link><description>&lt;p&gt;This article is about how you make your own 24/7 server. No idea if there are free services out there. I just made my own.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Broadley (Scaine)</dc:creator><pubDate>Fri, 06 Jun 2014 04:36:07 -0000</pubDate></item><item><title>Re: Step by Step : Install a Minecraft Server on Ubuntu</title><link>http://www.scaine.net/site/2013/02/step-by-step-install-a-minecraft-server-on-ubuntu/#comment-1420446245</link><description>&lt;p&gt;how do u get a free 24/7 server&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TKGaming</dc:creator><pubDate>Thu, 05 Jun 2014 01:35:43 -0000</pubDate></item><item><title>Re: Step by Step : Install a Minecraft Server on Ubuntu</title><link>http://www.scaine.net/site/2013/02/step-by-step-install-a-minecraft-server-on-ubuntu/#comment-1349408926</link><description>&lt;p&gt;No, this guide is for Bukkit installs. Funnily enough, I plan to start messing about with Forge soon because some of the better mods are based on it. The problem with Forge is that you have to install a Forge client as well as the server, so it's a bit more hassle.&lt;/p&gt;&lt;p&gt;Still, some of the mods are excellent, so if I make good progress, I may write a new article about getting it going.&lt;/p&gt;&lt;p&gt;I'll probably use something like this article to get started, as I have zero experience with Forge currently. &lt;a href="http://bad-programming.blogspot.co.uk/2012/10/how-to-run-minecraft-forge-on-ubuntu.html" rel="nofollow noopener" target="_blank" title="http://bad-programming.blogspot.co.uk/2012/10/how-to-run-minecraft-forge-on-ubuntu.html"&gt;http://bad-programming.blog...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Good luck.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Broadley (Scaine)</dc:creator><pubDate>Mon, 21 Apr 2014 18:04:22 -0000</pubDate></item></channel></rss>