A site for solving at least some of your technical problems...
A site for solving at least some of your technical problems...
In some of my work, I use ffmpeg to compress/decompress video and audio files.
My big problem with the ffmpeg and ffprobe tools is the incredibly annoying banner that they print and covers most of my console output. It's not only useless, but it makes it really hard to very quickly see the standard output of the command. (if only they were to put a line of dash or something to separate that section with the next...)
Under Linux, there is actually a really easy way to prevent that stupid banner from appearing all the time. It's by using the alias command.
First, the command line ...
Linux has options to encrypt zip or PDF files.
Note that the zip encryption capabilities are not very strong (i.e. they can be easily cracked). So don't use it if you can avoid it and keep in mind that most anyone can see what's inside either way.
zip --encrypt file.zip files
Note that there is an option to define the password on the command line (with --password) which is safe if you're the only user on your machine, but not so much on a shared machine since the password will appear in the list of processes.
And the PDF is very similar, but you have to enter the ...
I got 4 x 10Tb HDD -- HGST Ultrastar He10 -- click the link to find them on Amazon
One of my RAID1 drives, the important ones, started sending me error email messages about 8 sectors being "unreadable".
So first I waited a bit to see whether it would resolve itself. It did go silent for a few months and came back...
At that point, I decided to purchase a replacement and retire the drive giving me errors. The new drive looks good so far!
To see what the SMART system discovered, you can use the smartctl command like so:
...
If you are writing many scripts, once in a while, you may want to print out a message surrounded by a box. But how do you create a box of the right width?
Say for example, that you want to surround your message with + characters like so:
+++++++++++++++++++ + My Message Here + +++++++++++++++++++
The message itself would be coming from a variable. Maybe there is a filename into it so the width can vary widely.
Say the line in the middle is written like so:
echo "+ ${MESSAGE} +"
Then you can create the string of just + characters with the following command:
...
My MS-Windows 10 instance would not run properly anymore. Once booted, the login prompt worked as expected (yeah!) but once logged in, the OS would crash after a minute or two and show me the blue screen of death (BSoD).
I wanted to try a repair, so I looked into various websites, here I write what I ran so I can remember for next time (assuming it worked this time, at least).
dism /image:C:\ /cleanup-image /restorehealth
Most often, somehow, you seen people tell you to use /online as the first parameter. The fact is that your drive is not likely going to be online if you can't run ...
I found that good documentation from Termux, about Remote Access. It mentions [S]FTP and SSH. The main problem to use SSH is that you need to have access to the public key and... how do you copy the public key from your Termux terminal to your server?
What I've found is that you can use ssh-copy-id with a local VPS on the same network. When I'm at home, I have my phone on a LAN IP address and I can access my VPS servers... at least those that allow for a password login.
So what I've done is something like this:
1. Make sure that your VPS SSH server is still allowing password ...
As I'm working on a project that runs on a Jetson Tegra, I ran in this issue:
CMakeFiles/panel_ve.dir/panel_ve.cpp.o: In function `panel_ve::run()': /home/alexis/ve/virtual-entertainment/panel-ve/src/panel_ve.cpp:383: undefined reference to `NvEGLImageFromFd(void*, int)' /home/alexis/ve/virtual-entertainment/panel-ve/src/panel_ve.cpp:414: undefined reference to `NvDestroyEGLImage(void*, void*)'
Yet, I linked against the nvbuf_utils library, but apparently it was not happening.
The fact is NVidia offers an nvbuf_utils.h file in their development environment and ...
When a computer swap is getting used, by default you just see that swap is used, not so much about which process uses that swap space.
The function I used by default is free which outputs that info:
$ free total used free shared buff/cache available Mem: 528011648 75782220 200245172 1928996 251984256 449183156 Swap: 30769148 0 30769148
As we can see, this tool shows use how much RAM is used/available and how much swap is in use/available.
Only that doesn't tell you much. That is, my main question is genrally: which ...
I have been listening to many videos on YouTube, Facebook, etc. that have a really low volume. This is generally rather annoying since in the end I cannot hear a lot of the audio track.
There is actually a way to increase the volume over the normal 100% limit.
There are several features that offer such a feature, but the one that worked for me is a Volume Control application called pavucontrol.
sudo apt-get install pavucontrol pavucontrol
It looks like various systems offer various ways to do that, but at least that one works for me under Linux in ...
For my work, I need to have a simple Redis cluster to test that everything works. Unfortunately, when trying to setup the cluster, I was getting this message:
Waiting for the cluster to join................
with the dots (.) going forever.
To create the cluster I decided to create VPS computers with Ubuntu 18.04 since that's what we're still using. These have Redis version 4.0.3.
So... I created a clone from my clean Ubuntu 18.04.
I started that first system, changed the IP address to a group I could use on my system, and installed Redis.
...
Recent Posts on The Linux Page: