LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - News
User Name
Password
Linux - News This forum is for original Linux News. If you'd like to write content for LQ, feel free to contact us.
All threads in the forum need to be approved before they will appear.

Notices


Reply
  Search this Thread
Old 07-20-2017, 07:17 AM   #31
normanlinux
Member
 
Registered: Apr 2013
Location: S.E. England
Distribution: Arch
Posts: 161

Rep: Reputation: Disabled
User friendly distribution needed!


Quote:
Originally Posted by sswcharlie View Post
Hi
Would love to see a one click or two install new software.

It would ask for location of software open terminal and for whatever file type(which it establishes itself)(checks software manager etc) and would install the software. (dare I say it, as easy as .exe in that other software.


Would be great for the older generation like me to run Linux. User friendly. I find LM excellent and the only problem is with loading new software.

There maybe something out there. Let me know.

Thanks

Charles Harris
Arch has this (albeit from the command line) without the need to keep adding specific archives for individual packages.
If you don't want to use the command line, the very good Manjaro, which is based on Arch, will give you a nice clickable interface.
As far as I'm concerned, the plethora of personal archives that some people have reported with ubuntu-like distributions is a great way to make a great system awful.
 
Old 07-20-2017, 08:56 AM   #32
Alok Rai
Member
 
Registered: Aug 2015
Posts: 245

Rep: Reputation: Disabled
@normanlinux - sed sounds fascinating, particularly since I spend so much of my time trying to organize snippets of this and that - but what on earth is it? An abbreviation?
 
Old 07-20-2017, 09:54 AM   #33
Chris Rogiers
LQ Newbie
 
Registered: Dec 2015
Posts: 9

Rep: Reputation: Disabled
Linux Utility Programs

I like to set up a simple web develop system with:

LAMP server (Linux, Apache, MySQL, PHP)(any system)
mc CLI file manager (any system) or Krusader GUI file manager (KDE system)
openSSH (any system)
Geany editor (any system)
Kate (for some note taking or email prep offline) (KDE system)
Filezilla (any system)
git-gui (any system)
dolphin file manager (KDE system)
Dev Tools in Google Chrome or Chromium (any system which can handle it)
synaptic package manager (all .deb based systems)
octopi (all Arch based systems)

Operating systems used:

Kubuntu, Xubuntu, Arch (KDE), ArchBang, Bunsenlabs, Raspbian (Pi)
 
Old 07-20-2017, 12:26 PM   #34
biffsocko
LQ Newbie
 
Registered: May 2017
Posts: 2

Rep: Reputation: Disabled
tkdiff - graphical version of the diff command - much easier to read https://en.wikipedia.org/wiki/Tkdiff
pssh - run commands in parallel on lots of Unix/Linux boxes https://www.tecmint.com/execute-comm...rs-using-pssh/
iftop - top command for a network interface to measure bandwidth
collectl - go back to a point in time to see the state of a system .. like use the --top filter to see top output right before a system crash
auditd - audit tracks system calls and who issues them .. for instance, see who deleted a file at a particular point in time
column - nice output format to a command .. ex. mount | column -t
iotop - see whats hogging up the I/O - good for troubleshooting database latency

Last edited by biffsocko; 07-20-2017 at 12:30 PM.
 
Old 07-20-2017, 03:25 PM   #35
luquid
LQ Newbie
 
Registered: Mar 2017
Location: South Coast UK
Posts: 4
Blog Entries: 10

Rep: Reputation: Disabled
FSlint for riddance of duplicate files. Easily tidies a mess.
 
Old 07-20-2017, 05:08 PM   #36
sswcharlie
LQ Newbie
 
Registered: Aug 2016
Posts: 10

Rep: Reputation: Disabled
Clickboard Manager etc

Hi

Josephj thanks for your comments. I will check out. Have just downloaded a program using terminal successfully ! at that.

Charles Harris
 
Old 07-20-2017, 06:21 PM   #37
Don Littlefield
Member
 
Registered: Jul 2014
Location: Waldron Arkansas
Distribution: Debian 10 Buster
Posts: 49

Rep: Reputation: Disabled
I would like to see another menu option in the edit colum of the file manager to Resize pictures. There are some utils out there but hard to find to do the job right. I often need to have a pic resized to 800 x 600 for another forum and it is never easy to find that other util. I use Gnome mostly by the way.

Last edited by Don Littlefield; 07-20-2017 at 06:22 PM. Reason: add more text
 
Old 07-21-2017, 04:05 AM   #38
josephj
Member
 
Registered: Nov 2007
Location: Northeastern USA
Distribution: kubuntu
Posts: 214

Rep: Reputation: 112Reputation: 112
sed

@normanlinux - I love sed for simple things and hate it for complex ones. Where that line should be drawn is based on individual experience and preferences. It is an awesome tool.

Between it and awk, there's very little you can't do with a text file (especially if it's line-oriented). And a lot of things can be done easily and quickly in very few lines of code.
 
Old 07-21-2017, 05:34 AM   #39
josephj
Member
 
Registered: Nov 2007
Location: Northeastern USA
Distribution: kubuntu
Posts: 214

Rep: Reputation: 112Reputation: 112
RTFM/STFI/Read a book

Quote:
Originally Posted by Alok Rai View Post
@normanlinux - sed sounds fascinating, particularly since I spend so much of my time trying to organize snippets of this and that - but what on earth is it? An abbreviation?
If you don't know how to use sed yet, that's cool. When you need it, you'll learn it. But ...

If you haven't heard of it, then you really need to read a few general books on working from the command line (CLI). IMHO, it's pretty hard to learn this just by trying one small thing out at a time. Books give you a conceptual framework and some of the "why" behind things that examples usually don't provide.

You may like Linux now, but you won't really understand why so many people love it until you get a basic familiarity with the command line and the amazing things you can do by stringing a few commands together in a pipeline.

sed is a "Stream EDitor". To greatly oversimplify, it's basically a non-interactive/batch text editor that reads an input file one line at a time and manipulates that line and then prints it out.

It gets a bit hairy once you go past this basic functionality because it offers many extremely powerful editing options in an extremely terse/cryptic format and is generally totally unhelpful when it fails or just doesn't do what you want it to do.

Simple example:

I have bash function to determine if a string is numeric (defined here simply as all digits). This line does all the work:

Code:
VAR="$(echo "${1}" | sed -re 's/[0-9][0-9]*//')"
The argument (${1}) is fed into sed. sed replaces one digit followed by zero or more digits with nothing (matching as long a string as it can). The result ends up in VAR. (I'm only explaining the sed part here.)

If the resulting string (in VAR) is empty, then the original string contained only digits. (I make sure it isn't empty to start with before this gets called.)

There's a great new sed tutorial here https://github.com/learnbyexample/Co...ter/gnu_sed.md .

There's also one for grep https://github.com/learnbyexample/Co...er/gnu_grep.md

Last edited by josephj; 07-21-2017 at 05:49 AM. Reason: typo
 
Old 07-21-2017, 07:06 AM   #40
Alok Rai
Member
 
Registered: Aug 2015
Posts: 245

Rep: Reputation: Disabled
Thanks, Josephj! Earlier I was merely fascinated - now I am daunted as well. Clearly, I am not ready for sed - and, as you say, I "really need to read a few general books on working from the command line (CLI)". Any suggestions?

Thanks, again.
 
Old 07-21-2017, 09:30 PM   #41
schwarm
LQ Newbie
 
Registered: Nov 2012
Location: USA
Posts: 1

Rep: Reputation: Disabled
I use shell pipes with simple tools like sort, uniq, grep, wc, comm, find, diff and sed. The one that is suspect most have not used is comm. It is a better diff if what you are doing is lists of file names. One can them use sed to build commands to pipe to shell to mv, cp or rm the files. I, also, prefer tcsh to bash but that is another thing.
 
Old 07-22-2017, 12:48 AM   #42
Alok Rai
Member
 
Registered: Aug 2015
Posts: 245

Rep: Reputation: Disabled
The stuff posted by @schwarm is effectively a foreign language to me! Could I be the only one who is so handicapped? Please point me in the direction of some crucial instruction.
 
Old 07-22-2017, 01:42 AM   #43
Jjanel
Member
 
Registered: Jun 2016
Distribution: any&all, in VBox; Ol'UnixCLI; NO GUI resources
Posts: 999
Blog Entries: 12

Rep: Reputation: 364Reputation: 364Reputation: 364Reputation: 364
Remember: http://www.linuxquestions.org/questi...ml#post5530337

We're kinda drifting Off the original thread Topic tho. "OT"

Yes, technology is an infinite learning experience

Last edited by Jjanel; 07-22-2017 at 02:03 AM.
 
Old 07-22-2017, 02:13 AM   #44
Alok Rai
Member
 
Registered: Aug 2015
Posts: 245

Rep: Reputation: Disabled
Thanks @Jjanel for reminding me of that earlier thread - and chiding me ever so gently for drifting off the original topic! I shall desist. In any case, the original problem is resolved, and since "technology is an infinitely learning experience", one's ignorance thereof must also be infinite. So, I am sure, I will be back with something else. Meanwhile, to all the wonderful people here, thank you, thank you very much. This forum seems like one last enclave of gentility in a world that is rapidly going insane!

And yes, @Rickkkk, my login issue seems to have resolved itself - miraculously! Thanks.
 
Old 07-23-2017, 06:03 AM   #45
josephj
Member
 
Registered: Nov 2007
Location: Northeastern USA
Distribution: kubuntu
Posts: 214

Rep: Reputation: 112Reputation: 112
Quote:
Originally Posted by Alok Rai View Post
The stuff posted by @schwarm is effectively a foreign language to me! Could I be the only one who is so handicapped? Please point me in the direction of some crucial instruction.
No. You're just one of the few brave enough to admit it! And to try to do something about it by learning.

While this forum is exceptionally helpful and friendly, it does tend to attract intermediate to advanced posters, so you will see a lot of material that assumes substantial prior knowledge.

Beginners are welcome here as long as they are willing to be courteous and to put out some effort to learn more as they figure out what they need to learn. The ones I don't like are those who ask obvious school homework questions and want answers with no work.

The books on my shelf are rather old. Now that Linux has been around for some time, there should be good books in a library near you - for free. After you read enough to know if a particular book is good and works for you, you may want to buy it so you can highlight and write in it, etc. - whatever helps you learn. Used books are great too. The basics of the command line haven't changed in quite awhile. They just keep adding new options to programs.

I'll try to resist going off topic now.
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Feedback on New Q&A column on OpenSource.com jeremy Linux - News 82 04-07-2020 05:44 AM
How to pick up a file that has been created latest ? Sudharshana Linux - Newbie 3 02-20-2013 03:51 AM
LXer: Peazip- A powerful opensource file and archive manager for linux LXer Syndicated Linux News 0 09-18-2010 02:30 AM
Clipboard manager Berticus Linux - Software 1 11-29-2006 12:34 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - News

All times are GMT -5. The time now is 07:58 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