LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 05-05-2024, 02:20 PM   #1
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Rep: Reputation: Disabled
Question Looking for specific software in Debian repos


I'm looking for specific types of software available in Debian repositories.
I don't want Flatpaks, App images, or to grab .deb files from any old website.
I plan on enabling a Debian 12 Bookworm environment on my HP Chromebook 14 and then getting some Linux apps only via things like Apt (or Synaptic).

Here's what I'm looking for:
  1. A browser... other than Chromium or Firefox ESR (Extended Support Release)... unless those are some of the best options.
  2. A calendar (with search)
  3. An IDE
  4. A markdown editor (I know I can edit markdown files in an IDE, but I'd like to be able to see the output.)
The most important item is the browser. I'm writing this in the Android version of Firefox on chromeOS which isn't very fun for me to use.
 
Old 05-05-2024, 03:23 PM   #2
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,342

Rep: Reputation: 551Reputation: 551Reputation: 551Reputation: 551Reputation: 551Reputation: 551
Quote:
Originally Posted by derezion View Post
The most important item is the browser. I'm writing this in the Android version of Firefox on chromeOS which isn't very fun for me to use.
I highly recommend the Vivaldi browser which I have used with Debian for years. I put the Vivaldi repository in the Synaptic repository list and apply all Vivaldi updates as they come.

The repository is: https://repo.vivaldi.com/stable/deb/dists/stable/main/

Last edited by jailbait; 05-06-2024 at 10:24 AM.
 
1 members found this post helpful.
Old 05-05-2024, 03:55 PM   #3
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,887
Blog Entries: 28

Rep: Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534
You can use the Mozilla Firefox repo to get Firefox, Beta, or Nightly.
Vivaldi and Brave have repos.

Calendar; most Desktops have a calendar.

Eclipse, Pycharm, VisualCode, etc can all be installed but they aren't in the Debian repos.

There are several Markdown editors in the repos.
 
1 members found this post helpful.
Old 05-05-2024, 04:20 PM   #4
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
jailbait:
I appreciate this. I've used Vivaldi in the past and liked it.
I'm a little confused. Are you suggesting I go to Vivaldi's site and download and install the .deb?
Or what do you mean "put the Vivaldi repository in the synaptic repository list"?
I ask because of the warning on this wiki page.

craigevil
Quote:
Calendar; most Desktops have a calendar.
Thanks.
Enabling Linux within ChromeOS gives me a Debian virtual environment with a terminal, SSH, and a way to install .debs. It does not come with a calendar. Would you recommend GNOME Calendar?

Last edited by derezion; 05-07-2024 at 08:41 AM. Reason: Removed barebones label describing Debian. The Debian Linux environment on ChromeOS has plenty of features (grep, sed, awk).
 
Old 05-05-2024, 06:11 PM   #5
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
I'm still confused. (1.) Is there just one Debian repository? (2.) Is adding a repo to my sources list or whatever you call it different from installing software I find on "random" websites?

The DontBreakDebian page on the Debian wiki says:
"If you're coming to Debian from another operating system, you might be used to installing software that you find on random websites. On Debian installing software from random websites is a bad habit. It's always better to use software from the official Debian repositories if at all possible. The packages in the Debian repositories are known to work well and install properly."

I know I can get Firefox ESR by just entering apt install firefox-esr (or something). (3.) If I
Quote:
use the Mozilla Firefox repo to get Firefox, Beta, or Nightly.
... is that essentially the same or am I not following the warning above?
 
Old 05-05-2024, 08:53 PM   #6
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,360
Blog Entries: 28

Rep: Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148Reputation: 6148
I would suggest that you open Synaptic (the GUI package manager) and use the search function. I do know, from a recent search I needed to do, that there are several calendar packages available, some of them with the sort of features you mentioned. The Debian repos are reputed to offer the largest collection of packages of any distro.

I would second the suggestion that, if you can, you install packages from Debian's repos. I have from time to time installed a third-party *.deb, but, if you install from the repos, the package will be on the list to get updated automatically when you run an update.

As for a browser, my day-to-day go-to is Firefox ESR. Part of that is because I support Mozilla's efforts to keep the web healthy and safe and part of that is because it does what I need a browser to do.

Just a few thought.

Last edited by frankbell; 05-05-2024 at 08:54 PM.
 
1 members found this post helpful.
Old 05-06-2024, 10:23 AM   #7
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,342

Rep: Reputation: 551Reputation: 551Reputation: 551Reputation: 551Reputation: 551Reputation: 551
Quote:
Originally Posted by derezion View Post
jailbait:
I appreciate this. I've used Vivaldi in the past and liked it.
I'm a little confused. Are you suggesting I go to Vivaldi's site and download and install the .deb?
Or what do you mean "put the Vivaldi repository in the synaptic repository list"?
I ask because of the warning on this wiki page.
Put Vivaldi in the synaptic repository list. Then install Vivaldi using Synaptic. Synaptic will keep Vivaldi in sync with all of the other packages in the various repositories in the Synaptic repository list. If I remember correctly the very first time I put the Vivaldi repository in the Synaptic repository list I had to add the Vivaldi signing key to apt. The root command to do so was:

wget -q0- https://repo.vivaldi.com/archive/linux_signing_key.pub | sudo apt-key add -
 
Old 05-06-2024, 10:51 AM   #8
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
Thank you.
I hope the following belongs in this thread. I'm having some other issues.
Yesterday, I installed Synaptic and PCManFM. So many packages were installed with them and I can't launch Synaptic by just issuing Synaptic in the terminal (I get: -bash: synaptic: command not found). I also can't find it in the Applications menu on ChromeOS. I somehow got it to open via PCManFM.

I'm still deciding between Firefox and Vivaldi.

Just now I looked into getting GNOME Calendar and ran this command:
Code:
sudo apt install -s gnome-calendar
And I saw this:
0 upgraded, 220 newly installed, 0 to remove and 0 not upgraded.
Is that number of newly installed packages normal or am I compromised?
Thanks in advance.
 
Old 05-08-2024, 08:26 AM   #9
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
frank,
What do you say about Firefox ESR behind several versions behind regular Firefox?
That's what Jay the Linux Guy from Learn Linux TV said here.
I just looked into it and it looks like it's about 10 versions behind.

Status update:
As long as I'm not compromised, I'm going to:
- install GNOME Calendar
- get one of the browsers written about in this thread
- install Geany (IDE)
- get a well regarded Markdown editor or use Simplenote online
 
Old 05-08-2024, 03:52 PM   #10
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,144
Blog Entries: 21

Rep: Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481
I just use apt search command to do a look see.

Code:
harry@shop:~
$ apt search streamtuner2
Sorting... Done
Full Text Search... Done
streamtuner2/stable,stable,now 2.2.2+dfsg-2 all [installed]
  Browser for Internet Radio Stations
You will get longer readouts for words like terminal.
But in my terminal

Code:
harry@shop:~
$ apt search vilvadi
Sorting... Done
Full Text Search... Done
Tells me I should do a look see inside package manager under browsers next. Since I run systemd free. Can't say what chromeos will tell ya since I run full blown linux on my Chromebook.
 
1 members found this post helpful.
Old 05-08-2024, 04:41 PM   #11
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
My search put this out:
Code:
$ apt search vivaldi
Sorting... Done
Full Text Search... Done
ruby-useragent/stable 0.16.8-1.1 all
  HTTP User Agent parser
No offense but you spelled vivaldi wrong.
Thanks for the idea to search for it using APT. I hadn't even thought of that.

Last edited by derezion; 05-08-2024 at 04:43 PM.
 
Old 05-08-2024, 06:19 PM   #12
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
Okay, I'm not sure where this thread is going.
I found this on the Vivaldi website:
Manual setup of the Vivaldi Linux repositories
"You do not need to do this. After downloading a Linux package and installing it our Linux update repositories will be configured automatically for you to receive updates."

Since this sounds like downloading a program from a "random" website like the Debian wiki warned about, I guess I'll get Firefox ESR from the Debian repositories instead.

Thank you all for your time and stay safe.
 
Old 05-08-2024, 06:48 PM   #13
derezion
Member
 
Registered: Aug 2018
Distribution: Anything Debian-based
Posts: 90

Original Poster
Rep: Reputation: Disabled
I uninstalled Synaptic because I had trouble with it and couldn't find it in my applications menu. I just downloaded and installed Firefox ESR. It was ~350 MB. Can anyone tell me if it's normally that big? I noticed the Mozilla website mentioned the system requirements being 200 MB of hard disk space.

Last edited by derezion; 05-08-2024 at 07:20 PM. Reason: Added a note about mozilla's website
 
Old 05-08-2024, 07:32 PM   #14
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,144
Blog Entries: 21

Rep: Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481
Sounds about the right size for initial install. Lots of translations pulled in.

Later on it will drop down to 105MB. Heck. Google Chrome weighs in at 1.2 gig.
 
Old 05-09-2024, 10:54 AM   #15
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,144
Blog Entries: 21

Rep: Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481Reputation: 3481
You can try

Code:
sudo apt autoclean
IF concerned about used drive space being wasted.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to modify createrepo_c option to look for group files from two repos now that RHEL8 has two repos (instead of one in RHEL7)? pbsd Linux - Software 0 06-09-2022 06:56 PM
Deleted all of the repos in yum.repos.d, how to restore them? itsallgood Linux - Newbie 4 02-03-2015 10:17 AM
puppet repos vs redhat repos srinishrews Linux - Newbie 1 10-29-2014 06:49 PM
Adding specific repos for an application hongman Linux - Newbie 3 10-21-2014 07:07 PM
Unable to update repos in CentOS 5.6 yum.repos.d!!!!! Explore_Linux Linux - Newbie 1 09-28-2011 04:20 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 03:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration