Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

List of your linux Apps

Off-Topic discussions about science, technology, and non Debian specific topics.
Message
Author
User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#421 Post by bester69 »

argentwolf wrote: 2021-10-12 19:55 The app I'm most contented with of all is Duplicati in conjunction with Backblaze B2 Cloud Storage. I'm presently backing up several PC's daily to a 4 bay NAS (current capacity: 8326 GB), and approx. 450 GB of data from the NAS encrypted to the cloud. 8)
You might try :
duplicity with rclone

https://rclone.org/b2/
https://duplicity.gitlab.io/duplicity-web/

Duplicity comes with rclone backend (so you can use rclone integrated with duplicity) and works like a charm, In my own experience, duplicity never got databackup corrupted, you can try to break backup process and never seeems to get corrupted, it knows how to resume backup without getting corrupted.

Or using just B2 backend (duplicity support it)
In theory many protocols for connecting to a file server could be supported; so far

Amazon S3
Backblaze B2
DropBox
.....
ftp
GIO
Google Docs
Google Drive
HSI
Hubic
IMAP



Example of My MEGA backup scritpt with duplicity and rclone backend:

Code: Select all

#!/bin/bash
#
ionice -c2 -n7 -p$$ 
renice +15 -p $$

export RCLONE_CONFIG_PASS=$(sudo /home/$USER/scripts/secrets.sh XXYY6)
export LOGS=/home/$USER/LINUXDEBS/NOBACKUP/logs

clear
rclone lsf Mega2:
rclone size Mega2:
rclone mkdir Mega2:backres
echo "***** Tamaño ocupado de 10GB *****"
sleep 5

if [ ! -z  $(pgrep -f /usr/bin/duplicity) ]
then
    exit
fi

lock=$(find "/home/$USER/.cache/duplicity/" -type f -name "lockfile.lock")
if [ ! -z "$lock" ] 
then
 read -p "Duplicity locked , está seguro de volver a iniciarlo (y/n)?" choice
case "$choice" in 
  y|Y ) 
  echo "yes"
    killall duplicity
    find "/home/$USER/.cache/duplicity/" -type f -name "lockfile.lock"  -exec rm "{}" \;
  ;;
  * ) 
  echo "no"
  exit
  ;;
esac  
fi



duplicity  -v 4  --progress --asynchronous-upload --allow-source-mismatch  --num-retries=5 --no-encryption --ssl-no-check-certificate --volsize 50   --verbosity=6 --timeout=60 --progress   /media/sda5/BACKUPRES rclone://Mega2:/backres 2> /dev/null | tee $LOGS/dupres-`date +%Y-%m-%d_%H:%M:%S`.log 
killall duplicity
killall rclone

duplicity remove-all-but-n-full  2 --force --allow-source-mismatch  --timeout=60 --ssl-no-check-certificate rclone://Mega2:/backres | tee $LOGS/duprespurgue.log
/home/$USER/scripts/avisa.sh &



I think Duplicaty is a fork of duplicity, anyways, duplicaty never worked for me :? ..I really love duplicity, borg and rclone
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#422 Post by bester69 »

:arrow: SOUNDCLOUD APPLICATIONS WEB

SoundCloud Nuvola Player

EXCELLENT ALTERNATIVE (Ive been using it for long) :idea: to Auryo, tizonia and others souncloud linux clients
:idea: This Software works very well and is very usefull to keep listening Soundcloud in linux, now that all soundcloud apis are broken and no software works in linux
https://nuvola.tiliado.eu/app/soundcloud/other/


Image Image Image


Install:

Code: Select all

flatpak remote-add --if-not-exists nuvola https://dl.tiliado.eu/flatpak/nuvola.flatpakrepo
flatpak install nuvola eu.tiliado.NuvolaAppSoundcloud
:idea: Use with playerctl to control music (toggle play/pause, next song)

Example:

Code: Select all

if  [ "$(playerctl --player=NuvolaAppSoundcloud status)" == "Stopped" ]
then
echo "nada"
else
 playerctl --player=NuvolaAppSoundcloud next
fi


------------------------------------
Another build-in SoundCloud software Alternative available

MellowPlayer

MellowPlayer is a free, open source and cross-platform desktop application that runs web-based music streaming services in its own window and provides integration with your desktop (hotkeys, multimedia keys, system tray,notifications and more).
MellowPlayer is a Qt based alternative to NuvolaPlayer initially crafted for KaOS. MellowPlayer is written in C++ and QML.
https://gitlab.com/ColinDuquesnoy/MellowPlayer


Image Image

Install:
https://flathub.org/apps/details/com.gi ... llowPlayer
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#423 Post by bester69 »

Google Maps

Very cool!!
/opt/brave.com/brave/brave-browser --profile-directory=Default --app-id=gmkjkfepcibbjemdifjlfanjdedgklmj



Image
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
sunrat
Administrator
Administrator
Posts: 6457
Joined: 2006-08-29 09:12
Location: Melbourne, Australia
Has thanked: 116 times
Been thanked: 472 times

Re: List of your linux Apps

#424 Post by sunrat »

Google maps is not a Linux app. :roll:
“ computer users can be divided into 2 categories:
Those who have lost data
...and those who have not lost data YET ”
Remember to BACKUP!

CwF
Global Moderator
Global Moderator
Posts: 2669
Joined: 2018-06-20 15:16
Location: Colorado
Has thanked: 41 times
Been thanked: 196 times

Re: List of your linux Apps

#425 Post by CwF »

sunrat wrote: 2022-03-06 22:10 Google maps is not a Linux app. :roll:
No doubt.
bester69 wrote: 2022-03-06 15:35 Very cool!!
No, try FoxtrotGPS

clementishutin
Posts: 37
Joined: 2021-12-10 11:59
Been thanked: 3 times

Re: List of your linux Apps

#426 Post by clementishutin »

bester69 wrote: 2015-08-22 10:30 My list with the best apps I 've found:

Desktop Utilities:
- k3b --> Similar to Nero Burning (CD/DVD recording) http://www.k3b.org/
- Deja-dup --> Similar to Cobian Backup (Data Backups) https://wiki.gnome.org/Apps/DejaDup/HowItWorks
- Digikam plus ShowFoto--> Similar to Picassa (Album web manager) https://www.digikam.org/
- Gwenview--> Viewer photo manager https://userbase.kde.org/Gwenview
- Shutter (or ksnapshot) --> Similar to FastStone Capture (desktop image capture) http://shutter-project.org/preview/screenshots/
- Simplescreenrecorder--> Similar to Camptasia Studio (descktop recorder) http://www.maartenbaert.be/simplescreenrecorder/
- Peazip --> Similar to 7zip (file compresor) http://www.peazip.org/peazip-help-faq.html
- Gparted--> Similar to Partition Manager ( Partition application) http://gparted.org/
- Virtualbox--> general-purpose full virtualize desktop
- Freefilesync (or Grsync) --> Simialr to SyncBack Freeware (syncroonizations folders) http://www.freefilesync.org/
- Truecrypt --> Great encrypting software https://www.digitalocean.com/community/ ... i-on-linux
- Kshutdown --> Shutdown scheduled http://kshutdown.sourceforge.net/
- Sentinella --> Activity trigger application (cpu, ram, network, date) http://sentinella.sourceforge.net/
- Kalarm --> Great Alarm Manager http://www.astrojar.org.uk/kalarm/index.html
- Baobab--> Disk Usage Analyzer http://www.marzocca.net/linux/baobab/baobab-usage.html
- Komparator4--> Great diff file comparator
- Krename --> Massive conditions renamer http://www.krename.net/home/
- recoll --> Best file indexer searcher (ultra fast, find everything) http://www.lesbonscomptes.com/recoll/
- FreePassX--> Passwords Manager https://www.keepassx.org/

Web:
- Chromium (or firefox)--> Same as chrome (web broser)
- Opera Browser --> http://www.opera.com/download/guide/?os=linux-i386
- Amule--> Same as emule (p2p) http://www.amule.org/
- Transmission --> Simimlar to Utorrent (P2P) http://www.transmissionbt.com/
- Google earth--> Maps web
- Skype --> VOIP
- Kopete-> Similar to messenger
- MEGA and Dropbox --> Clients clouds

Graphics:
- Blender--> 3D https://www.blender.org/features/
- Inkscape (also Krita)--> Similar to Corel Draw (Graphic vectorial designer) https://inkscape.org/en/ https://krita.org/features/highlights/
- Gimp --> Similar to Photoshop http://www.gimp.org/
- Kolourpaint--> Same as Mspaint http://kolourpaint.sourceforge.net/screenshots.html
- draftsight--> Same as to AutoCad https://en.wikipedia.org/wiki/DraftSight

Audio and Video:
- Kdenlive --> Similar to Tmpgenc (Trasncoding movies) https://kdenlive.org/
- Handbrake --> Similar to Virtualdub (Trasncoding movies) https://handbrake.fr/
- Avidemux --> Similar to Virtualdub (Trasncoding movies) http://fixounet.free.fr/avidemux/
- DVD Styler--> Nice and easy to use DVD Authoring http://www.dvdstyler.org/en/
- DVD OMGRIP--> Same as DVDShrink (DVD ripping) http://ogmrip.sourceforge.net/en/index.html
- DVD95 --> DVD9 to DVD5 (DVD ripping) http://dvd95.sourceforge.net/?go=features
- Audex --> CD Sound ripping https://userbase.kde.org/Audex
- Acestream--> Great Media Player p2p
- VLC --> Great Media player
- MPV --> great mplayer fork http://mpv.io/
- Kodi--> Similar to windows media center (Media center) http://kodi.tv/
- Nuvola Player (run Spotify) --> Nuvola Player is a runtime for web-based music streaming services https://tiliado.eu/nuvolaplayer/
- Audacious--> Similar to foobar2000 or Winamp (best audio player) http://audacious-media-player.org/
- Clementine player--> Similar to itunes (second best audio player) https://www.clementine-player.org/
- Streamtuner2--> Great internet radio statio http://milki.include-once.org/streamtuner2/

- Audacity --> Great sound editor composer http://audacityteam.org/

Office:
- Kontact--> Similar to Outlook (Mail, contacts, calendar manager) https://en.wikipedia.org/wiki/Kontact
- RSSOWl (Or akregator)--> Best rss feed reader http://www.rssowl.org/ https://userbase.kde.org/Akregator
- LibreOffice --> Similar to MsOffice
- Okular reader--> Best pdf reader https://okular.kde.org/
- Kate and gedit -- > Similar to notepad (text editor) http://kate-editor.org/about-kate/
- Xsane--> Scan software http://www.xsane.org/xsane-introduction.html

Others very Good
- Minitube--> Watch youtube HD movies smoothly http://flavio.tordini.org/minitube
- Totem--> Gnome Video player https://wiki.gnome.org/Apps/Videos
- Gnac --> Gnome Batch Audio Converter http://gnac.sourceforge.net/screenshots/
- Brasero--> CD/DVD recording software https://wiki.gnome.org/Apps/Brasero
- WinFF --> GUI for ffmpeg encoder (Trasncoding movies) http://winff.org/html_new/
- MKVToolNix GUI--> Matroska Tools (Trasncoding movies) https://www.bunkus.org/videotools/mkvtoolnix/
-vpn linux
- luckybackup --> Complete and nice date backup tool (gui rsync) http://luckybackup.sourceforge.net/features.html
- backintime --> Complete date backup tool (gui rsync) http://backintime.le-web.org/
- Ktorrent--> Client torrent very complete https://www.kde.org/applications/internet/ktorrent/

Supported Linux Wine
- MediaCoder-->MediaCoder is a universal media transcoding software actively developed and maintained since 2005. http://www.mediacoderhq.com/


now, please post yours :wink:
You sure do have a long list of apps, what is your occupation?

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#427 Post by bester69 »

Two great weather linux applications, Now that summer is here

Kweather
https://flathub.org/apps/details/org.kde.kweather

Image

Gnome-weather
https://flathub.org/apps/details/org.gnome.Weather

Image
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
Trihexagonal
df -h | participant
df -h | participant
Posts: 149
Joined: 2022-03-29 20:53
Location: The Land of the Dead
Has thanked: 20 times
Been thanked: 16 times
Contact:

Re: List of your linux Apps

#428 Post by Trihexagonal »

Fluxbox - WM
Xfe - file manager
mc - file manager
rxvt-unicode - terminal emulator
wipe - file shredder
rkhunter - rootkit hunter
tkdvd - burn CD's, .iso, etc.
Asunder - rip Cd's
VLC- watch videos
Audacity - audio file manipulation
Audacious - audio player
Gimp - image manipulation
Firefox-ESR - browser
nmap - port scanner
Leafpad - text editor
gKrellm - meters
youtube_dl - video download
epdfview - .pdf reader
apt - System Update
UFW - firewall
When Darkness takes everything embrace what Darkness brings.

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#429 Post by bester69 »

syncthing
Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time,
Can sync your smartphone folders with your computer, this way, you can always have a copy of your documents in your movile, or several computers synchronized..
https://apt.syncthing.net/
** synchronize PC and mobile with computer (android)
https://play.google.com/store/search?q=syncthing

Image


this tool works very well :idea:
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: List of your linux Apps

#430 Post by Head_on_a_Stick »

Typst
Typst is a new markup-based typesetting system that is designed to be as powerful as LaTeX while being much easier to learn and use. Typst has:
  • Built-in markup for the most common formatting tasks
  • Flexible functions for everything else
  • A tightly integrated scripting system
  • Math typesetting, bibliography management, and more
  • Fast compile times thanks to incremental compilation
  • Friendly error messages in case something goes wrong
https://typst.app/

There aren't any Debian packages yet but I'll probably throw some together this weekend and update this post with a link.
deadbang

pizza-rat
Posts: 91
Joined: 2023-05-16 21:38
Has thanked: 39 times
Been thanked: 21 times

Re: List of your linux Apps

#431 Post by pizza-rat »

I'll just list stuff I don't see people mention often:

pcmanfm-qt - Excellent, featureful file manager
audacious - Music player, supports lots of formats including file formats ripped from old video games (snes, genesis, etc)
picard - For fetching music tags
newsboat - Most reliable rss reader I've found. I used rssguard and kde's at some point but both would occasionally miss new items or keep repeating them for some reason
conky - Just a really nice system monitor. You often see people use it to cover their entire desktop, but I just have it as a small box on the side of my screen in a style similar to xosview
redshift - f.lux on linux. Can't live without it, sorry Wayland
opensnitch - Application firewall, get alerted whenever anything on your PC tries to connect to outside
gpick - I use this when ricing, handy little color picker
qpdfview - Excellent pdf reader
qt5ct, kvantum - For qt theming. I generally prefer using qt-based stuff over GTK for any graphical programs I run, because I despise dealing with GTK themes and all their nonsense. The motif/cde styles are great.

User avatar
None1975
df -h | participant
df -h | participant
Posts: 1398
Joined: 2015-11-29 18:23
Location: Russia, Kaliningrad
Has thanked: 46 times
Been thanked: 68 times

Re: List of your linux Apps

#432 Post by None1975 »

Bpytop. Excellent tool!

Image
OS: Debian 12.4 Bookworm / DE: Enlightenment
Debian Wiki | DontBreakDebian, My config files on github

User avatar
Hallvor
Global Moderator
Global Moderator
Posts: 2041
Joined: 2009-04-16 18:35
Location: Kristiansand, Norway
Has thanked: 149 times
Been thanked: 212 times

Re: List of your linux Apps

#433 Post by Hallvor »

Here is a list of the applications I use most:

Dolphin (file manager)
Firefox (web browser)
Dragon Player (video player)
Gwenview (image viewer)
Okular (document viewer)
GIMP (image editor)
aMule (p2p-client)
Akregator (rss-reader)
KDE Connect (mobile sync)
Konversation (IRC client)
kTorrent (Bittorrent-client)
calibre (e-book library management)
LibreOffice (office suite)
Clementine (music player)
Handbrake (media transcoder)
K3b (CD-burner)
Kdegames
Kalzium (periodic table)
KDE Marble (virtual globe)
KStars (planetarium)
KGeography (geography learning)
AMOR (KDE creature)
KAlarm (Alarm planner)
KTeaTime (tea timer)
Spectacle (screenshot tool)
[HowTo] Install and configure Debian bookworm
Debian 12 | KDE Plasma | ThinkPad T440s | 4 × Intel® Core™ i7-4600U CPU @ 2.10GHz | 12 GiB RAM | Mesa Intel® HD Graphics 4400 | 1 TB SSD

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#434 Post by bester69 »

Currently I use mostly:
- brave, firefox (browsers)
- Opera V7 addon (management bookmarks)
- konsole, kate, dolphin, PeaZip, shutter (desktop)
- copyQ (clipboard manager), Xsane (scanning), Gimp (images edition)
- recollindex, locate (file system indexing search)
- libreoffice, okular/adobeReader (documents)
- kmail (gmail), kalarm (alarms), gcalcli (gmail reminders)
- bitwarden (strong password box), Authy (two factor authentificacion box)
- rclone-browser, MEGA (cloud backup)
- borg (local backup), fsarchiver(system backup), snapper-gui(realtime snapshots backups)
- encfs (private documents)
- telegram, kdeconnect (sharing things with Android)
- riseUpVPN (switch IP)
- pulseffects (increase volume)
- cantata (radio podcasts), shortwave(radio stream)
- smplayer (video player)
- Mellowplayer(listenning music soundcloud)
- firestorm, TrackMania (playonlinux) (pc games)
- OBS-Studio, Handbrake (transcoding and screen recording)
- cherrytree (quick notes)
- Google Assistant (light home devices management)
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

CynicalDebian
Posts: 263
Joined: 2023-03-02 05:26
Location: USA
Has thanked: 50 times
Been thanked: 60 times
Contact:

Re: List of your linux Apps

#435 Post by CynicalDebian »

pizza-rat wrote: 2023-08-11 08:05 redshift - f.lux on linux. Can't live without it, sorry Wayland
On Wayland I use gammastep
https://packages.debian.org/testing/gammastep
Be seeing you...

pizza-rat
Posts: 91
Joined: 2023-05-16 21:38
Has thanked: 39 times
Been thanked: 21 times

Re: List of your linux Apps

#436 Post by pizza-rat »

CynicalDebian wrote: 2023-08-13 09:10 On Wayland I use gammastep
https://packages.debian.org/testing/gammastep
If I'm remembering correctly, none of the Wayland alternatives to redshift work with nvidia cards yet. Last time I tried was about a year/half a year ago I think. I'll probably give Wayland another try when Debian 13 releases.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: List of your linux Apps

#437 Post by Head_on_a_Stick »

NVIDIA finally added GBM support for v495.44 so anything after that "should" work. EDIT: bloody NVIDIA... :x

And to stay on topic:

Tectonic
Tectonic is a modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive.
https://tectonic-typesetting.github.io/en-US/

Whereas the Debian TexLive packages install lots of LaTeX modules and take up even more space than LibreOffice, Tectonic is a small, self-contained binary that downloads the modules on demand at compilation time.

No .deb packages are available but the program can be downloaded and run locally without installation:

https://tectonic-typesetting.github.io/ ... stall.html
deadbang

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#438 Post by bester69 »

Loupe is the New Image Viewer App for GNOME

Image
Features

Fast GPU accelerated image rendering with tiled rendering for SVGs
Extendable and sandboxed (expect SVG) image decoding
Support for more than 15 image formats by default
Extensive support for touchpad and touchscreen gestures
Accessible presentation of the most important metadata
Sleek but powerful interface developed in conjunction with GNOME Human Interface Guidelines

https://news.itsfoss.com/loupe-image-viewer/

Installation:
flatpak install flathub org.gnome.Loupe
flatpak run org.gnome.Loupe
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#439 Post by bester69 »

yewtube, forked from mps-youtube , is a Terminal based YouTube player and downloader. No Youtube API key required.

This project is based on mps-youtube and mps-youtube is based on mps, a terminal based program to search, stream and download music. This implementation uses YouTube as a source of content and can play and download video as well as audio. The pafy library handles interfacing with YouTube.
https://github.com/mps-youtube/yewtube

Image
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux Apps

#440 Post by bester69 »

LocalSend
LocalSend is a free, open-source app that allows you to securely share files and messages with nearby devices over your local network without needing an internet connection.
- LocalSend is a cross-platform app that enables secure communication between devices using a REST API and HTTPS encryption.
- LocalSend doesn't require an internet connection or third-party servers, making it a fast and reliable solution for local communication.
https://github.com/localsend/localsend


Image

Install:
https://localsend.org/#/download
Linux:
https://flathub.org/apps/org.localsend.localsend_app
Android:
https://play.google.com/store/apps/deta ... -Mar2515-1
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

Post Reply