LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-18-2020, 08:44 AM   #16
sgosnell
Senior Member
 
Registered: Jan 2008
Location: Baja Oklahoma
Distribution: Debian Stable and Unstable
Posts: 1,943

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542

I don't think you need a new machine. That one should be more than capable. I'm currently using a first-version Asus Chromebox with the BIOS reflashed to run Linux. That one I am considering replacing, but probably not with something as pricey as yours. Debian does not need the newest and shiniest hardware.

Newegg is an online retailer selling electronic and computer parts and machines. Sort of like Amazon, but specializing in computer stuff. I'm in the US, and have no idea what stores are in Australia.
 
Old 08-18-2020, 04:00 PM   #17
alex4buba
Member
 
Registered: Jul 2020
Posts: 620

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by sgosnell View Post
I don't think you need a new machine. That one should be more than capable. I'm currently using a first-version Asus Chromebox with the BIOS reflashed to run Linux. That one I am considering replacing, but probably not with something as pricey as yours. Debian does not need the newest and shiniest hardware.

Newegg is an online retailer selling electronic and computer parts and machines. Sort of like Amazon, but specializing in computer stuff. I'm in the US, and have no idea what stores are in Australia.
I have several close friends in the US, one couple in Las-Vegas / Henderson, in Miami, in Washington
Where are you?

Will see if my current machine behaves itself for a week or two, I too, hope that there is no need for me to replace it

Cheers
Alex
 
Old 08-18-2020, 04:31 PM   #18
sgosnell
Senior Member
 
Registered: Jan 2008
Location: Baja Oklahoma
Distribution: Debian Stable and Unstable
Posts: 1,943

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
Baja Oklahoma is a term used for "south of Oklahoma", or Texas. I'm way down on the GUlf coast, anxiously eyeing the potential hurricanes moving across the Atlantic.
 
Old 08-18-2020, 05:09 PM   #19
alex4buba
Member
 
Registered: Jul 2020
Posts: 620

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by sgosnell View Post
Baja Oklahoma is a term used for "south of Oklahoma", or Texas. I'm way down on the GUlf coast, anxiously eyeing the potential hurricanes moving across the Atlantic.
I love the movie... But, you still didn't tell me your name

Alex
 
Old 08-18-2020, 05:17 PM   #20
sgosnell
Senior Member
 
Registered: Jan 2008
Location: Baja Oklahoma
Distribution: Debian Stable and Unstable
Posts: 1,943

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
No, I didn't.
 
Old 08-18-2020, 06:47 PM   #21
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
Some of us prefer to remain anonymous. I am totally anonymous online, as best as I can be to the average person.
 
Old 08-18-2020, 09:18 PM   #22
alex4buba
Member
 
Registered: Jul 2020
Posts: 620

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by sevendogsbsd View Post
Some of us prefer to remain anonymous. I am totally anonymous online, as best as I can be to the average person.
Absolutely your prerogative mate

Cheers
Alex
 
Old 08-19-2020, 01:32 AM   #23
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by alex4buba View Post
Today, is the first time I decided to examine the system logs. I the "Important" section I see the atached.
For some time i suspected there is hardware problem, all the other sections of the log are also showing long list of problems which I have no idea what they are.

Maybe it is time for me to get a new machine before going any further... Do you understand what the hardware errors mean?

Thanks
Alex
None of the 3 messages in the screenshot are consequential. They certainly don't warrant a reinstall or even new hardware.

You need to learn to trust your Linux system.
It breaks only when you mess with it.
 
1 members found this post helpful.
Old 08-19-2020, 02:35 AM   #24
alex4buba
Member
 
Registered: Jul 2020
Posts: 620

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
None of the 3 messages in the screenshot are consequential. They certainly don't warrant a reinstall or even new hardware.

You need to learn to trust your Linux system.
It breaks only when you mess with it.
Ondoho,

IN most cases, I want to trust it, my problem is that in half of cases, I have no idea what I am doing - at this stage... There are times that I get to try and install something through command line, it goes well untill it comes up with some error that I have no idea how to fix.

Then, what was already installed, is left there hanging consuming storage space... How do I get rid of that?

Thanks
Alex
 
Old 08-19-2020, 09:24 AM   #25
sgosnell
Senior Member
 
Registered: Jan 2008
Location: Baja Oklahoma
Distribution: Debian Stable and Unstable
Posts: 1,943

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
You can use the GUI package manager instead of the command line to install and remove packages. If you do want to use the command line, you can remove installed packages with
Code:
sudo apt remove --purge packagename
That removes the package and its configuration files. In the package manager, just select the package and choose 'Mark for removal', then click on Apply. IIRC, I haven't used the Synaptic in awhile, but it will be at least very similar to that.
 
Old 08-20-2020, 12:50 AM   #26
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by alex4buba View Post
I have no idea what I am doing - at this stage...
Then don't mess with it!
Have a separate install that's for messing/testing/trying things out/getting aquainted.
Judging by your recent threads, you have been doing so much I'm not surprised things start breaking on your current install (not your hardware).

Quote:
Originally Posted by alex4buba View Post
Then, what was already installed, is left there hanging consuming storage space... How do I get rid of that?
2 things:
1. Always run 'apt autoremove' after every install
2. Always clear packages from apt's archive (that's a persistent apt setting that can be set through synaptic, or websearch for a direct edit solution)

BTW, we are getting wildly off-topic here.
It would be better for the forums, and also a good exercise for you, to separate your topics into, well, clear topics.
 
Old 08-20-2020, 05:32 PM   #27
alex4buba
Member
 
Registered: Jul 2020
Posts: 620

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
Then don't mess with it!
Have a separate install that's for messing/testing/trying things out/getting aquainted.
Judging by your recent threads, you have been doing so much I'm not surprised things start breaking on your current install (not your hardware).

2 things:
1. Always run 'apt autoremove' after every install
2. Always clear packages from apt's archive (that's a persistent apt setting that can be set through synaptic, or websearch for a direct edit solution)

BTW, we are getting wildly off-topic here.
It would be better for the forums, and also a good exercise for you, to separate your topics into, well, clear topics.
Yes, we are getting off the topic...
My problem is when I try to install something that has several steps, the 1s-2 first steps go ok, it fails on the 3rd... So - what can I remove?

Thanks again
Alex
 
  


Reply

Tags
file manager, sorting



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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Rapid Listing, alphabetically sorting, dir/files sorting in C ? Xeratul Programming 18 11-24-2014 10:13 AM
Get file icon from extension, file type, or mime-type Guitarist88 Programming 3 04-21-2008 10:58 AM
Having problem on sorting my files to the correct folder New2Linux06 Linux - General 3 11-04-2006 04:22 AM
sorting the same kind of files in a folder? lenny45 MEPIS 11 05-08-2006 11:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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