search
HomeBackend DevelopmentGolangGo Ubuntu: Old School Style

Go   Ubuntu: Old School Style

If you're the type of person who likes cute interfaces and feature-packed tools, this article might not be for you. Here, let's do things the old-fashioned way, like our ancestors did. In the end, you will leave with Go installed and running, without the need for IDEs or polished interfaces (in case the frontend world ends for good).

What you will need:

  • Distributions based on Debian/Ubuntu, as the commands here are specific to this scenario;
  • Visual Studio Code installed (step-by-step link);
  • Sanity (optional, depending on the level of your GUI needs).

Installation

Open the terminal and paste the following command:

sudo apt install golang-go
  • sudo: is necessary to ensure that the command will be executed with administrator permissions (the famous "root");

  • apt: is the Ubuntu package management tool, used to install, update and remove software;

  • install: indicates that we are asking the system to install a new package;

  • golang-go: is the package you are installing, that is, Go (also known as Golang).

This command will install the version of Go present in the official Ubuntu repositories. The disadvantage is that this version is often not the most recent, as the repositories may not always be updated with the latest versions of all tools.


What if I want the most current version of Go?

To ensure you have the latest version of Go available, use the following commands:

sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go
  • sudo add-apt-repository ppa:longsleep/golang-backports: is the command that will add a backports repository to your system. Backport repositories are like “alternative paths” to obtain newer versions of packages that are not in the official repository;

  • sudo apt update: will update the list of available packages and ensure that the system is aware of this new source of packages;

  • sudo apt install golang-go: ensures that you download the most current version of Go available in this backports repository.


Checking the installed version

After installation, check if Go was installed correctly by running the following command:

go version

This should return something like:

go version go1.23.4 linux/amd64

Now you're ready to take over the world with Go... or at least finish following the tutorial, if you don't mind.

It went wrong, what now?

Now turn around, right? The world will not dominate itself alone.


Programming in Go using VSCode

Now that Go is in the system, it's time to code using the VSCode terminal (I promise it doesn't hurt).

Open VSCode through the terminal with the command:

sudo apt install golang-go

Create a new project:

sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go

If the following message in vbnet is as follows, then it means it worked.

go version

Now, run the ls command to list the files and create the directory structure:

go version go1.23.4 linux/amd64
  • mkdir: the command used to create a directory (a folder);

  • -p: option that allows you to create subdirectories, if they do not exist, without generating an error. For example, if you want to create a folder inside another, -p will create all the folders in the path at once;

  • project-name: is the name you choose for the directory that will be created, that is, we are creating the folder where we will store all the files of your Go project;

  • cd: means "change directory", changing directory. It is used to navigate between directories (folders) on your file system;

  • project-name: is the directory we just entered. So, after running this command, the terminal will be inside the project-name folder, where you can start working and adding files;

  • touch: command used to create an empty file. In this case, it creates the main.go file within the project-name directory (if the file already exists, the command updates the modification date and time);

  • main.go: Go file where we will write the code for our project;

  • code: command to open VSCode, if you have it installed and configured in your terminal;

  • main.go: file you just created, which will be opened directly in VSCode. This is useful to launch the file and start programming in Go directly from within the editor.

Now, finally inside main.go, paste the following code for a simple "Hello":

code .

Run via terminal:

go mod init nome-projeto

Ready! Now you will definitely dominate the world.


Want to be more old school? More coming!

Now, if you want to be more "thick", how about creating the file directly in the terminal without using a text editor?

Open the terminal in Ubuntu and create a file called hello.go with the Go code directly in it:

go: creating new go.mod: module projeto
go: to add module requirements and sums:
        go mod tidy
  • echo -e allows you to print multiple lines of text in the terminal (and -e interprets line breaks and other special characters);

  • The text between the quotes is the Go code we are inserting into the file;

  • > hello.go redirects the output of the echo command to the file hello.go.

Now, let's definitely raise the level.


Running...

sudo apt install golang-go

This command will compile and execute the Go file at the same time, resulting in:

sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go

Modifying the code directly in the terminal

If you want to make small changes to the code directly in the terminal, you can use echo again. For example, if you want to change the message to "Hello, World!", run the command:

go version

Then run again:

go version go1.23.4 linux/amd64

Tip: using echo with redirection is a quick and effective way to create small files directly through the terminal. However, for larger projects, you will need a text editor like nano or vim in the terminal.


Conclusion

No more, except that now you are a true legend, and you will make this world a bluer place. GO!

The above is the detailed content of Go Ubuntu: Old School Style. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you use the pprof tool to analyze Go performance?How do you use the pprof tool to analyze Go performance?Mar 21, 2025 pm 06:37 PM

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

How do you write unit tests in Go?How do you write unit tests in Go?Mar 21, 2025 pm 06:34 PM

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

How do I write mock objects and stubs for testing in Go?How do I write mock objects and stubs for testing in Go?Mar 10, 2025 pm 05:38 PM

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

How can I define custom type constraints for generics in Go?How can I define custom type constraints for generics in Go?Mar 10, 2025 pm 03:20 PM

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

How can I use tracing tools to understand the execution flow of my Go applications?How can I use tracing tools to understand the execution flow of my Go applications?Mar 10, 2025 pm 05:36 PM

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications?Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications?Mar 25, 2025 am 11:17 AM

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

How do you use table-driven tests in Go?How do you use table-driven tests in Go?Mar 21, 2025 pm 06:35 PM

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

How do you specify dependencies in your go.mod file?How do you specify dependencies in your go.mod file?Mar 27, 2025 pm 07:14 PM

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.