How do you download and install software on a Linux operating system

  • Thread starter Deleted User
  • Start date
  • Views 3,089
  • Replies 32
  • Likes 1
D

Deleted User

Guest
OP
I have just downloaded and installed Linux Mint and it is amazing but I am stuck at one thing I cannot figure out how to download and install software and I was hoping someone could give me some pointers on this topic thanks in advance
 
  • Like
Reactions: IncredulousP

dAVID_

Well-Known Member
Member
Joined
Oct 23, 2016
Messages
1,405
Trophies
1
Location
The Game
XP
2,276
Country
Mexico
You can either use Mint's built in Software Library (or something like that) and install software from there or you could also apt (or whatever packaging tool your distribution uses) and install software from the official repositories.
You;re going to need to use apt for some things, so I'd recommend getting used to it.
Here's an example. Say there's a program "foo" on an X repository.
If that repository is in my list of software repositories I can use apt like this:
sudo apt install foo
From there it'll automatically install.
 

Kwyjor

Well-Known Member
Member
Joined
May 23, 2018
Messages
4,312
Trophies
1
XP
4,444
Country
Canada
sudo apt install foo
Isn't it:
sudo apt-get install foo

But yes, generally you would use Software Manager.


I cannot figure out how to download and install software and I was hoping someone could give me some pointers on this topic thanks in advance
So... Did you not try to do a Google search at all for anything like this?

Because if this is giving you so much trouble that you immediately decided to start a forum thread, Linux is going to drive you completely bonkers very, very quickly.
 
  • Like
Reactions: Flame

IncredulousP

GBAtemp's Resident Bastard
Member
Joined
Aug 21, 2012
Messages
679
Trophies
2
Location
Penguin Village
XP
3,012
Country
United States
To expand on dAVID_'s answer, the software library is called Synaptic Package Manager. It provides a GUI for looking up all the software available via the official repo (distributions have their own maintained repos of software that is supposed to be the closest compatible versions for your OS). For command-line installation, there is the Advanced Package Tool, used like "apt-get install <program name>" or "apt-cache search <program name>", but I recommend the nice debian/ubuntu wrapper for it used like "apt install <program name>" or "apt search <program name>" as it has nicer commands and interface (in my opinion).

For command-line, first update your OS's knowledge of what software and what updates are available: "apt-get update" or "apt update"
Then, if you know the exact name, install it "apt-get install <program name>" or "apt install <program name>", such as "apt install ncurses". You will probably not be root user, so you will need "sudo" in front like "sudo apt install ncurses"
If you don't know the exact name and want to search for it, use "apt-cache search <program name>" or "apt search <program name>". This takes in regex input too, if you are familiar with it.

Btw, if you are in commandline and ever want more info on a program, type in "man <program name>" like "man apt" or "man apt-get", it'll give you the official manual for it :D

Oh and yes, as Kwyjor mentioned you will want to use Google. A lot. Linux isn't a single, mass company product like Microsoft's OS so there's going to be a looot of clunky things that'll overwhelm people new to it. Google a lot. Google everything. Linux is always painful at first, but it gets easier overtime and eventually if you stick to it it'll become second nature and you'll have much more control over your computer than Microsoft would ever let you have.
 
Last edited by IncredulousP,

Hern4ndeZzz

Member
Newcomer
Joined
Nov 23, 2019
Messages
18
Trophies
0
Age
38
XP
99
Country
Portugal
Alternatively, you can go to Flathub, search for the software you want, and click install.
Easier than that... only if you use the Package Manager.

I, personally, tend to install everything via terminal. But I wouldn't start there.
 
D

Deleted User

Guest
OP
To expand on dAVID_'s answer, the software library is called Synaptic Package Manager. It provides a GUI for looking up all the software available via the official repo (distributions have their own maintained repos of software that is supposed to be the closest compatible versions for your OS). For command-line installation, there is the Advanced Package Tool, used like "apt-get install <program name>" or "apt-cache search <program name>", but I recommend the nice debian/ubuntu wrapper for it used like "apt install <program name>" or "apt search <program name>" as it has nicer commands and interface (in my opinion).

For command-line, first update your OS's knowledge of what software and what updates are available: "apt-get update" or "apt update"
Then, if you know the exact name, install it "apt-get install <program name>" or "apt install <program name>", such as "apt install ncurses". You will probably not be root user, so you will need "sudo" in front like "sudo apt install ncurses"
If you don't know the exact name and want to search for it, use "apt-cache search <program name>" or "apt search <program name>". This takes in regex input too, if you are familiar with it.

Btw, if you are in commandline and ever want more info on a program, type in "man <program name>" like "man apt" or "man apt-get", it'll give you the official manual for it :D

Oh and yes, as Kwyjor mentioned you will want to use Google. A lot. Linux isn't a single, mass company product like Microsoft's OS so there's going to be a looot of clunky things that'll overwhelm people new to it. Google a lot. Google everything. Linux is always painful at first, but it gets easier overtime and eventually if you stick to it it'll become second nature and you'll have much more control over your computer than Microsoft would ever let you have.

Okay thank you I did google this but all I got was how to install linux mint

--------------------- MERGED ---------------------------

You can either use Mint's built in Software Library (or something like that) and install software from there or you could also apt (or whatever packaging tool your distribution uses) and install software from the official repositories.
You;re going to need to use apt for some things, so I'd recommend getting used to it.
Here's an example. Say there's a program "foo" on an X repository.
If that repository is in my list of software repositories I can use apt like this:
sudo apt install foo
From there it'll automatically install.

Isn't it:
sudo apt-get install foo

But yes, generally you would use Software Manager.



So... Did you not try to do a Google search at all for anything like this?

Because if this is giving you so much trouble that you immediately decided to start a forum thread, Linux is going to drive you completely bonkers very, very quickly.


Alternatively, you can go to Flathub, search for the software you want, and click install.
Easier than that... only if you use the Package Manager.

I, personally, tend to install everything via terminal. But I wouldn't start there.

Okay thanks for your help
 
  • Like
Reactions: IncredulousP

AmandaRose

Do what I do. Hold tight and pretend it’s a plan
Member
Joined
Aug 19, 2015
Messages
10,190
Trophies
1
Location
Glasgow
Website
www.rockstarnorth.com
XP
16,120
Country
United Kingdom
Okay thank you I did google this but all I got was how to install linux mint
Are you REALLY sure you googled it and found nothing :rofl2:

Screenshot_20191209_184751_com.sec.android.app.sbrowser.jpg
 
Last edited by AmandaRose,

IncredulousP

GBAtemp's Resident Bastard
Member
Joined
Aug 21, 2012
Messages
679
Trophies
2
Location
Penguin Village
XP
3,012
Country
United States
Are you REALLY sure you googled it and found nothing :rofl2:

View attachment 189433
Not defending anybody but Google highly customizes and filters results for the individual, so different people may get different things. There's also the permutations of words that can be entered. Also Linux is exhausting to new people so cut them some slack :P
 
  • Like
Reactions: Deleted User
D

Deleted User

Guest
OP
Okay I am having another problem I am trying to install Brave Browser

Link: https://brave-browser.readthedocs.io/en/latest/installing-brave.html#linux

and when I type this command into the terminal sudo apt install apt-transport-https curl
I get this

E: Malformed entry 1 in list file /etc/apt/sources.list.d/brave-browser-release-.list (Component)
E: The list of sources could not be read.
E: Malformed entry 1 in list file /etc/apt/sources.list.d/brave-browser-release-.list (Component)
E: The list of sources could not be read.

do you know what this means? I am at a complete loss
 

dAVID_

Well-Known Member
Member
Joined
Oct 23, 2016
Messages
1,405
Trophies
1
Location
The Game
XP
2,276
Country
Mexico
Isn't it:
sudo apt-get install foo

But yes, generally you would use Software Manager.



So... Did you not try to do a Google search at all for anything like this?

Because if this is giving you so much trouble that you immediately decided to start a forum thread, Linux is going to drive you completely bonkers very, very quickly.

sudo apt-get install and sudo apt install is the same. It's just an abbreviated version.

--------------------- MERGED ---------------------------

Okay I am having another problem I am trying to install Brave Browser

Link: https://brave-browser.readthedocs.io/en/latest/installing-brave.html#linux

and when I type this command into the terminal sudo apt install apt-transport-https curl
I get this

E: Malformed entry 1 in list file /etc/apt/sources.list.d/brave-browser-release-.list (Component)
E: The list of sources could not be read.
E: Malformed entry 1 in list file /etc/apt/sources.list.d/brave-browser-release-.list (Component)
E: The list of sources could not be read.

do you know what this means? I am at a complete loss
It basically means that something is wrong with /etc/apt/sources.list.d/brave-browser-release-.list. Try opening that file with a text editor, and see if you find anything weird. If you can't fix, it might be useful to post a screenshot here.
 
D

Deleted User

Guest
OP
sudo apt-get install and sudo apt install is the same. It's just an abbreviated version.

--------------------- MERGED ---------------------------


It basically means that something is wrong with /etc/apt/sources.list.d/brave-browser-release-.list. Try opening that file with a text editor, and see if you find anything weird. If you can't fix, it might be useful to post a screenshot here.
sudo apt-get install and sudo apt install is the same. It's just an abbreviated version.

--------------------- MERGED ---------------------------


It basically means that something is wrong with /etc/apt/sources.list.d/brave-browser-release-.list. Try opening that file with a text editor, and see if you find anything weird. If you can't fix, it might be useful to post a screenshot here.
Okay I tried to open this archive but it says a error has occurred and it does not show any files within the .zip archive should I try downloading the .zip archive again? thanks
 

The Real Jdbye

*is birb*
Member
Joined
Mar 17, 2010
Messages
23,243
Trophies
4
Location
Space
XP
13,793
Country
Norway
To expand on dAVID_'s answer, the software library is called Synaptic Package Manager. It provides a GUI for looking up all the software available via the official repo (distributions have their own maintained repos of software that is supposed to be the closest compatible versions for your OS). For command-line installation, there is the Advanced Package Tool, used like "apt-get install <program name>" or "apt-cache search <program name>", but I recommend the nice debian/ubuntu wrapper for it used like "apt install <program name>" or "apt search <program name>" as it has nicer commands and interface (in my opinion).

For command-line, first update your OS's knowledge of what software and what updates are available: "apt-get update" or "apt update"
Then, if you know the exact name, install it "apt-get install <program name>" or "apt install <program name>", such as "apt install ncurses". You will probably not be root user, so you will need "sudo" in front like "sudo apt install ncurses"
If you don't know the exact name and want to search for it, use "apt-cache search <program name>" or "apt search <program name>". This takes in regex input too, if you are familiar with it.

Btw, if you are in commandline and ever want more info on a program, type in "man <program name>" like "man apt" or "man apt-get", it'll give you the official manual for it :D

Oh and yes, as Kwyjor mentioned you will want to use Google. A lot. Linux isn't a single, mass company product like Microsoft's OS so there's going to be a looot of clunky things that'll overwhelm people new to it. Google a lot. Google everything. Linux is always painful at first, but it gets easier overtime and eventually if you stick to it it'll become second nature and you'll have much more control over your computer than Microsoft would ever let you have.
Ubuntu has something called Ubuntu Software Center, I would assume that Mint has something similar, and that's what they were talking about. It doesn't list every package, it just provides an easier (for a beginner) way to install popular software. Not the same thing as Synaptic, if that's what they meant.
 
  • Like
Reactions: IncredulousP
D

Deleted User

Guest
OP
That isn't a zip file.

Okay sorry its icon is a box

here are a few screen shots of whats happening

I input this command into the terminal
Screenshot from 2019-12-09 18-21-22.png

and get this
Screenshot from 2019-12-09 18-23-35.png


I do not know what this means and hopefully it is fixable
 
D

Deleted User

Guest
OP
Try opening the .list file with a text editor.

Where is this .list file

--------------------- MERGED ---------------------------

The CMD says there is a list file but none are in my computer
 
D

Deleted User

Guest
OP
/etc/apt/sources.list.d/

I did a full system search in my files library and this file is not found another thing I should add is that it is saying this when I try to install any program it is like it is stuck on the brave installation
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Psionic Roshambo @ Psionic Roshambo:
    It could get banned from PSN but you can change your ID I think?
  • Xdqwerty @ Xdqwerty:
    also gonna install twilight menu in my r4 flashcard
  • Psionic Roshambo @ Psionic Roshambo:
    One thing that just occurred to me.... The sound on the 2600 sucked less back then the harsh sound we hear now is from infinitely better speakers we have now, back when the 2600 was new speakers produced a almost muffled sound, like CRTs made old graphics look slightly better.
  • Psionic Roshambo @ Psionic Roshambo:
    I wonder if I could recommend that to some emulation devs that perhaps the sound could use some smoothing out to simulate those old TVs
  • Psionic Roshambo @ Psionic Roshambo:
    I think a few of the early systems could benefit from that, at least up to the 8 bit generation, by the 16 bit generation I think TVs had gotten a lot better in almost every way
  • Xdqwerty @ Xdqwerty:
    i dont have an sd card adapter but I have an usb sd card adapter
  • K3Nv2 @ K3Nv2:
    Old people games
  • Xdqwerty @ Xdqwerty:
    its not the one that comes with the r4
  • Xdqwerty @ Xdqwerty:
    doesnt work (my flashcard is from r4isdhc.com)
  • Xdqwerty @ Xdqwerty:
    might install ysmenu first
  • Psionic Roshambo @ Psionic Roshambo:
    Try Wood firmware
  • Psionic Roshambo @ Psionic Roshambo:
    For your R4
  • Psionic Roshambo @ Psionic Roshambo:
    It's old but it's the best firmware out for DS stuff
  • Xdqwerty @ Xdqwerty:
    it says it only works for the original R4, R4i Gold (r4ids.cn), R4iDSN (r4idsn.com) and Acekard R.P.G.
  • Xdqwerty @ Xdqwerty:
    nvm it does support mine
  • Xdqwerty @ Xdqwerty:
    but why choose it over ysmenu @Psionic Roshambo?
  • Xdqwerty @ Xdqwerty:
    bc im stupid?
  • Xdqwerty @ Xdqwerty:
    yea ik im stupid
  • Xdqwerty @ Xdqwerty:
    good night
  • Psionic Roshambo @ Psionic Roshambo:
    Just give it a try, but honestly if you have a 3DS you can play DS games without a card just off the internal SD card
  • Psionic Roshambo @ Psionic Roshambo:
    Slightly slower loading but a bit more convenient
  • BakerMan @ BakerMan:
    guys, my fuckin headphones have an out of place speaker
  • K3Nv2 @ K3Nv2:
    Did you try wearing them?
    K3Nv2 @ K3Nv2: Did you try wearing them?