LinuxQuestions.org
Visit Jeremy's Blog.
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-19-2017, 09:02 AM   #16
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,734

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Post


AutoKey - I find it indispensable.
 
Old 07-19-2017, 09:48 AM   #17
powderburns
LQ Newbie
 
Registered: Dec 2011
Distribution: debian, mint, opensuse, fedora, ubuntu, fbsd
Posts: 11

Rep: Reputation: Disabled
Guake is another shell console that runs in the background of your gui and drops down from the top of the screen by pressing F12. It is customizable and mimicks the console from Quake, hence the name. For me, it is more convenient to pull a shell up with a single keystroke than to double click a launcher or have open terminals cluttering my desktop space. It can also hold multiple tabbed sessions for you which is another nice feature.
 
Old 07-19-2017, 09:49 AM   #18
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,734

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Thumbs up

Quote:
Originally Posted by powderburns View Post
Guake is another shell console that runs in the background of your gui and drops down from the top of the screen by pressing F12. It is customizable and mimicks the console from Quake, hence the name. For me, it is more convenient to pull a shell up with a single keystroke than to double click a launcher or have open terminals cluttering my desktop space. It can also hold multiple tabbed sessions for you which is another nice feature.
+1 Guake
 
Old 07-19-2017, 12:39 PM   #19
kdl88
LQ Newbie
 
Registered: Jan 2015
Posts: 3

Rep: Reputation: Disabled
For disk management/info LSBLK saved my bacon a few times.
 
Old 07-19-2017, 01:23 PM   #20
Alok Rai
Member
 
Registered: Aug 2015
Posts: 247

Rep: Reputation: Disabled
The clipboard utility - Clipman for me with XFCE - and the duplex printing utility seem tempting. But where would I find them,and how would I integrate them into my machine?
 
Old 07-19-2017, 03:27 PM   #21
sonoma95446
LQ Newbie
 
Registered: Nov 2012
Location: CA Wine Country
Distribution: MINT XFCE 16.04LTS
Posts: 9

Rep: Reputation: Disabled
This is not real small but invaluable for cleaning the mess on your drive. Similar to Windows WinDirStat, QDirStat for Gnome and KDirStat for KDE perform the same and show a graphical display on the bottom and a more normal file command type of display on the top. You can right click on the graphics to ID the files that are hugs and see what they are and permanently delete them from top or bottom. You really need to see any of the three different dirtrees as they all look a lot alike although I think the Windows one was around much longer.
 
Old 07-19-2017, 05:08 PM   #22
GWetzel
LQ Newbie
 
Registered: Jun 2017
Posts: 1

Rep: Reputation: Disabled
I've used Beyond Compare for years

Quote:
Originally Posted by khentiamentiu View Post
A utility I use practically every day when I'm coding is kdiff3. It's free, and powerful, a solid engine for comparing files or directories, whether they be in different code repositories, or different versions in one repository. It fits neatly into both git and svn command lines, giving you a gui when you want it for comparison. It's also good for comparing notes, logs, and ascii dumps.
Graphical comparisons all of the above. Cross platform. Dropbox profiles. Not free but nominal. Extensive filtering. The list goes on and on
 
Old 07-19-2017, 05:31 PM   #23
iNC0GNi70
Member
 
Registered: Apr 2015
Distribution: Slackware64 14.2
Posts: 32

Rep: Reputation: 1
Climate !
https://github.com/adtac/climate

It allows anyone with it installed to due lotsa things actually, like checking your battery status, the weather, and pretty much everything actually !
 
Old 07-19-2017, 06:16 PM   #24
Nobutarou
Member
 
Registered: May 2017
Posts: 43

Rep: Reputation: Disabled
んー, this is very difficult to answer because there are tons of small but powerful and efficient utilities. Benefit for everyone... zsh built-ins, less, parallel,,,. んー,,,,, for everyone.....

How about Hostsblock, https://github.com/gaenserich/hostsblock ?
 
Old 07-19-2017, 07:01 PM   #25
dabreese00
LQ Newbie
 
Registered: Dec 2015
Location: Chicago, IL, USA
Distribution: Debian, Slackware, CentOS, OpenWRT
Posts: 10

Rep: Reputation: Disabled
xdiskusage

rhamel, I like ncdu, and I'ma let you finish, but xdiskusage is one of the best disk usage visualizers out there (especially if you want a GUI).

Xdiskusage is extremely small, simple, and light, but its world-beating feature is that it can read the plaintext output of "du". This means you can do:

Code:
ssh root@myserver "du -ax /" > /path/to/file
and you will have a stored, visualizable readout of the server's root filesystem usage, sitting on your local workstation. Then just visualize it with:

Code:
xdiskusage /path/to/file
Note that the role of xdiskusage here is purely visualization -- you don't need ANY special tools to collect and save the data! Just coreutils "du"! No need to install extra programs on your servers

Ncdu has something similar, but it seems like it can only read output generated by itself, so it would appear to require installing ncdu on the machine you want to analyze. This is not a huge drawback, but for me it's less than ideal. Plus, I like having a GUI frontend (that I only have to install on my workstation!).

I am continually mystified as to why all Linux disk usage visualizers don't ship this simple, elegant feature. Maybe I am just missing the other ones that do.
 
Old 07-19-2017, 08:23 PM   #26
jim_s
LQ Newbie
 
Registered: May 2017
Posts: 8

Rep: Reputation: Disabled
Not specifically a Linux utility, but nvm (Node Version Manager - https://github.com/creationix/nvm).

Allows you to install multiple versions of Node + npm and switch between them with a simple command.
Fantastic for developers switching between projects and easier than messing around with PPAs even if you just want to install the latest version.

Code:
# list available versions
nvm ls-remote

# install as many as you want
nvm install 8.2.0
nvm install 6.9.1

# list installed versions
nvm ls

# aliases (default does what it says on the tin)
nvm alias default 6.9.1

# switch version
nvm use 6.9.1
 
Old 07-19-2017, 08:58 PM   #27
sswcharlie
LQ Newbie
 
Registered: Aug 2016
Posts: 10

Rep: Reputation: Disabled
Linux Mint Software Installs

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
 
Old 07-19-2017, 11:40 PM   #28
rhamel
Member
 
Registered: Sep 2009
Location: Caribbean
Distribution: Slackware 15.0, Proxmox 7.4-17, FreeBSD 13.2
Posts: 70

Rep: Reputation: Disabled
Ok, not open source but really useful - http://www.jgoodies.com/downloads/jdiskreport/

It's a java thingy I found years ago.

It sorts files by filetype, size. It identifies the top 50 biggest sizes.

Last modified, size disribution, useful stuff.

All kinds of surprises about what's on my hard drives.

Requires Java, so runs on Windows and Mac OSx as well.

Just saying.
 
Old 07-20-2017, 04:48 AM   #29
josephj
Member
 
Registered: Nov 2007
Location: Northeastern USA
Distribution: kubuntu
Posts: 214

Rep: Reputation: 112Reputation: 112
@linustalman - Now you've embarrassed me! I manage the original branch of AutoKey and forgot to mention it. I support it because it's so indispensable to me.

@Alok Rai - duplex is available here.

I don't know how to make an installer for it (If anybody wants to show me how, that would be great!), but it comes with very detailed installation instructions (and support from me if you ask for it.) If you have a very basic familiarity with the Linux command line, it's very easy to install. It's just a bunch of bash scripts, so there's not a lot to do to install it.

@sswcharlie - That's what Ubuntu is moving toward with the snap installation methodology. [ducking and covering]
However, making installs zipless comes with a lot of questionable tradeoffs - a whole other topic.

Using any modern package manager (pacman, yum, apt, ...) makes the installation process relatively painless these days - at least for any package which has been packaged in a repository for your distro (which is the vast majority of things most people want).

Which brings me to another cool utility: checkinstall.

Quote:
When make install is done, CheckInstall will create a Slackware, RPM or Debian compatible package and install it with Slackware's installpkg, "rpm -i" or Debian's "dpkg -i" as appropriate, so you can view it's contents with pkgtool ("rpm -ql" for RPM users or "dpkg -l" for Debian) or remove it with removepkg ("rpm -e"|"dpkg -r"). Aditionally, this script will leave you a copy of the installed package in the source directory so you can install it wherever you want,
So, when you have to manually install something on a system which uses one of the supported packaging systems, it will build it into a package so you can deal with it just like a package you got from a repository - which makes uninstalling it a lot easier.

The only thing I don't like about it is that I always remember to use it right after I've finished manually installing something.
 
Old 07-20-2017, 06:59 AM   #30
normanlinux
Member
 
Registered: Apr 2013
Location: S.E. England
Distribution: Arch
Posts: 161

Rep: Reputation: Disabled
2 to consider

The gvim, 'split diff with' option is fantastic. It gives you side by side editing windows, update content from one to the other with diffget / diffput. (Can also be invoked with gvimdiff file 1 file2). Nothing better for applying customisations to an updated config file.

So many people overlook the wonders of sed. Some time back I had a problem where several hundred small files, originally produced with Microsoft Word and saved as html snippets, had to be processed for a website.

In it's own inimitable way, Word had rendered accented characters in two or three incompatible formats, rendered as strange codes that failed to display properly. We also had the so-called 'smart quotes' to unravel. On a very old, Pentium II with limited RAM sed chewed through 800+ files quicker than we could have hand edited more than half a dozen.

Even if you only need sed once, it will more than repay the time taken to learn to use it.

Last edited by normanlinux; 07-20-2017 at 07:00 AM. Reason: Corrct typo
 
  


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 10:59 AM.

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