Skip to main content

Setup of the MVS Operator account on Linode


Whatever you do, don't start the whole Hercules, TK4-, MVS thing up as root. Not that it won't work, it will. But you'll have exposed port 3270 to the Internet with root access. Do I need to tell you why that's a bad idea?

So create a user and their home directory called mvsop, give it a funky password. Give it sudoers rights too. You could use adduser instead of useradd, but what fun is that?

$ useradd -m -r -c "Hercules TK4- MVS 3.8j Operator" mvsop $ passwd mvsop $ usermod -aG sudo username

The option -m creates a home directory for mvsop, -r makes it a system account so there is no expiry and -c lets you create a comment line to be seen when they log in. And usermod adds the user to the sudo group. Still has to have the root password, so at least it is somewhat better secured. This is nowhere near as secure as a cert authorization, but the intent isn't become a Linux expert, it's to get MVS 3.8j up and running.

Test out the new user. Fire up your terminal program (I use Putty), connect to your Linux server and login as mvsop. See what happens. If all is copacetic, then you're good to install TK4-.



Comments

Popular posts from this blog

10 Meter Beacons

  According to WJ5O, the  NCDXF/IARU International Beacon Network is supposed operate on 28.200 CW. Well 10 meters is fickle band to say the lease, and at 03:14 UTC it's dead quiet. I've heard beacons on before, specifically WB3JOE via groundwave (it's only 10 miles up the road from my QTH).  But I'll leave the G90 on most of the day and listen for any openings

Back to the Linode Nanode again and why you should get one

My first Linode shared CPU server was last year. I kept it for about 6 months before I created a local Linux server on a Raspberry Pi. It was a little $5 a month single CPU, 1GB ram, 25GB SSD storage Nanode...  a portmanteau of 'Nano' and 'Linode as Linode puts it. It was quite convenient to play with from anywhere.  Not that it's important for my experimental needs, but 40GB/1GB network speed and 1TB of monthly transfer is pretty damn good. And I suppose that the server being in Newark, NJ, only 85 miles up the turnpike makes it more reliable? Doubtful it matters much. I re-upped  again today with Linode and pulled another Nanode up for the same low low price of $5 a month. And I did so because I think it's getting risky to port forward a home server and expose it to the Internet...and I need to have one available from outside of my home domain for the things I like to do. Why is it getting risky? Its because of old home routers, home routers that haven't been ...

Start using Tmux. You have to

  Tmux is a Linux utility that makes your life so, so simple. Truth is, I wasn't using it until recently. Dumb me. Essentially Tmux is a little environment for your Linux terminal sessions when you can make what I call 'named spaces' for you command line activities. Which means that if you start a process going and get accidently, or intentionally disconnected, that process keeps going regardless. You got that. No more processes getting hoses because of a connection time-out. And what's more, you can have several command windows running at the same time, in the same session, each doing their own thing. Aaaaaand...it's complicated of course. Here's the link to the Tmux Cheatsheet -  https://tmuxcheatsheet.com