Hi,
I am an amateur radio operator who was going to try using a logging program called CQRlog to log my radio contacts, but I have changed my mind because it seems there are too many other packages needing installed that go beyond my abilities.
For installation in 22.04, I used the instructions to install "lazarus" and "git" and then attempted to compile using make. See here:
https://www.cqrlog.com/comment/10511#comment-10511
However, I have changed my mind and want to uninstall lazarus and git as well as the compiled CQRlog. I would appreciate the proper commands for the uninstallation and thank you in advance.
Bill
Thanks for the help, but I have some questions:understand "fpc" was also installed at the same time (according to https://ubuntuhandbook.org/index.php/2021/11/install-lazarus-ide-ubuntu/). Should I do a complete removal by marking "fpc-source-3.2.2"? What about the "lcl-2.2" and others?
Synaptic reveals several versions of Lazarus as shown in this screenshot:
https://i.imgur.com/VJdZyV9.png
If I just mark "lazarus" for complete removal, the others are NOT highlighted to be removed as well. Therefore, should I also be marking "lazarus-2.2", "lazarus-ide-gtk2", etc... basically everything with "lazarus" in the name here, or ? Also, I
Interestingly, Lazarus 2.2.0 also appears in the Software center as installed (with removal option):
https://i.imgur.com/QdXNgH9.png
At least "git" is much simpler with only a single entry to remove. It also does NOT appear as Lazarus does in the Software center.as well as the Software Center with the uninstall option.
As for the next commands, the order is shown as indicated in the cqrlog post that I linked to, but will repeat here:
git clone https://github.com/ok2cqr/cqrlog.git
cd cqrlog
make
sudo make install
After the steps from git clone to sudo make install were done, CQRlog then appeared in my programs. Of course, when I tried to open, I get the messages about more files needed and that's when I decided to not use it. It appears in my programs list
I'm a bit lost when you begin discussing the build commands, which is why I repeated them here. Where is the Makefile located? In the CQRlog directory?Software Center.
"And you MUST complete your tree-cleaning, before doing the next step.
If you did the next step first, then it would no longer be
possible to do "sudo make remove" or similar. You remove the
side-effects of your work, before cleaning up the scene of
the crime."
Sorry, I don't follow. How do I complete the "tree-cleaning" and such?
Since CQRlog is showing in the Software Center with uninstall option, might it be simpler to just uninstall it from there? As a side note, interestingly, although CQRlog shows up in Synaptic, it does not show as installed even though it does in the
I decided to go with my most recent back up, from late Jan, 2024. Most of what had changed were emails and browser, so just transferred over the config files and good to go. I didn't feel confident trying to uninstall the tools and the compiledprogram without messing something up. Needless to say, I WON'T be trying to use this program again anytime soon. I've tried installing it in the past and was never able to get it working correctly even then. It does have a lot of features if I ever
However, I have changed my mind and want to uninstall lazarus and git
as well as the compiled CQRlog. I would appreciate the proper
commands for the uninstallation and thank you in advance.
On 4/8/24 3:54 AM, Paul wrote:
On 4/8/2024 1:03 AM, Bill Evans wrote:
I decided to go with my most recent back up, from late Jan, 2024.
Most of what had changed were emails and browser, so just transferred
over the config files and good to go. I didn't feel confident trying
to uninstall the tools and the compiled program without messing
something up. Needless to say, I WON'T be trying to use this program
again anytime soon. I've tried installing it in the past and was
never able to get it working correctly even then. It does have a lot
of features if I ever did get it working, but I use a much lighter
and easier to install program that is adequate. Only issue is that
the one I use hadn't been updated for over 5 years, so I suppose one
day that it will stop working but for now it works fine. Thanks
again for trying to help
I doubt you would screw things up.
Really, the biggest liability, might be something left
in the tree after
sudo make install
But there may be ways to work on that, such as listing
all files by date. And noting the particular day
you blasted them in.
*******
These are two commands for listing files
or listing directories, into output listings.
cd ~/Downloads
df # This lists various mounted file systems, like from
the automounter
# In the example, a limited portion of tree is being listed, but you
can use / instead
find /media/WIN2KAS -type d -exec ls -al -1 -d --full-time {} + >
directories.txt
find /media/WIN2KAS -type f -exec ls -al -1 --full-time {} + >
filelist.txt
And just for you, this version of the filelist example,
will make it so that column one is a timestamp suited to
sorting in LibreOffice Calc. There are two timestamps plus the filename.
The first field has been made ten digits wide, with leading 0 added
if the field is not wide enough to make ten digits. In LibreOffice Calc
you can use Data:Sort just like excel, with a default extended selection.
sudo find /media/WIN2KAS -type f -exec stat --printf='%010Y %y %n\n'
{} + > statlist.txt
Paul
I appreciate this and will try and refer to it in the future, but I'm considering installing a "system restore" feature, similar to Win, if
one is available for Ubuntu, similar to one like featured here:
https://ostechnix.com/systemback-restore-ubuntu-desktop-and-server-to-previous-state/
Not sure about the software there, but I do wonder if anyone can
recommend something similar so the next time, I simply take a snapshot
before installation and, if no good, restore to original snapshot?
On 4/8/24 3:54 AM, Paul wrote:program without messing something up. Needless to say, I WON'T be trying to use this program again anytime soon. I've tried installing it in the past and was never able to get it working correctly even then. It does have a lot of features if I ever
On 4/8/2024 1:03 AM, Bill Evans wrote:
I decided to go with my most recent back up, from late Jan, 2024. Most of what had changed were emails and browser, so just transferred over the config files and good to go. I didn't feel confident trying to uninstall the tools and the compiled
I doubt you would screw things up.
Really, the biggest liability, might be something left
in the tree after
sudo make install
But there may be ways to work on that, such as listing
all files by date. And noting the particular day
you blasted them in.
*******
These are two commands for listing files
or listing directories, into output listings.
cd ~/Downloads
df # This lists various mounted file systems, like from the automounter
# In the example, a limited portion of tree is being listed, but you can use / instead
find /media/WIN2KAS -type d -exec ls -al -1 -d --full-time {} + > directories.txt
find /media/WIN2KAS -type f -exec ls -al -1 --full-time {} + > filelist.txt
And just for you, this version of the filelist example,
will make it so that column one is a timestamp suited to
sorting in LibreOffice Calc. There are two timestamps plus the filename.
The first field has been made ten digits wide, with leading 0 added
if the field is not wide enough to make ten digits. In LibreOffice Calc
you can use Data:Sort just like excel, with a default extended selection.
sudo find /media/WIN2KAS -type f -exec stat --printf='%010Y %y %n\n' {} + > statlist.txt
Paul
I appreciate this and will try and refer to it in the future, but I'm considering installing a "system restore" feature, similar to Win, if
one is available for Ubuntu, similar to one like featured here:
https://ostechnix.com/systemback-restore-ubuntu-desktop-and-server-to-previous-state/
Not sure about the software there, but I do wonder if anyone can
recommend something similar so the next time, I simply take a snapshot
before installation and, if no good, restore to original snapshot?
I didn't feel confident trying to uninstall the tools and the compiled program without messing something up.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 499 |
Nodes: | 16 (3 / 13) |
Uptime: | 44:23:43 |
Calls: | 9,833 |
Calls today: | 3 |
Files: | 13,764 |
Messages: | 6,193,534 |