Skip to main content

Black Friday 2025! Only until December 1st: coupon FRIDAY25 for 40% off Yearly/Lifetime membership!

Read more here

Update EC2 Ubuntu Server

Premium
3 min read

We continue preparing our server for the upcoming Laravel project. Usually, the first thing after fresh installation, before everything else, are OS and software updates. So, let's take care of that.

  1. Since updates are system-wide changes, you need root privileges for that. Very often, tutorials prepend all commands with sudo which is not super convenient when doing administrative work on servers. To elevate privileges to root enter:
ubuntu@ip-172-31-44-101:~$ sudo su -
root@ip-172-31-44-101:~#
  1. The most overlooked command when administrating the server is the screen command. It provides the ability to launch and use multiple shell sessions. What's the deal with the screen command and updates you may ask?

The Full Lesson is Only for Premium Members

Want to access all of our courses? (29 h 14 min)

You also get:

54 courses
Premium tutorials
Access to repositories
Private Discord
Get Premium for $129/year or $29/month

Already a member? Login here

Comments & Discussion

C
colbyalbo ✓ Link copied!

Never knew about the "screen" command, i've always just ran updates and upgrades . Definitely a "must use", from now on when maintaining my linux servers remotely, thanks!