LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 08-14-2019, 04:01 AM   #436
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66

Hi,
The output died early..

Can you try again after this:

Code:
sudo su
Bodge99
 
Old 08-14-2019, 04:16 AM   #437
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by bodge99 View Post
Hi,
The output died early..

Can you try again after this:

Code:
sudo su
Bodge99
I did it with sudo su to start with. I noticed an odd flash/flcikering, so I checked the file, and since it was long, I thought it was OK.

Just to make sure I did the right thing:
* I copied all 6 lines to the clipboard
* I opened the terminal, then typed sudo su to go root, which it did
* I pasted it all into the terminal

If this was correct, should those 6 lines not be pasted as 1 line?
 
Old 08-14-2019, 04:20 AM   #438
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,
Code:
The "/" character acts as a "continuation" marker.. This just splits one long line into six for ease of reading.
You could do it one line at a time, by dropping the "" on each line.
I'm going to be busy for a couple of hours, so no rush..

Bodge99

Last edited by bodge99; 08-14-2019 at 06:16 AM. Reason: Foward slash has been removed, showing in a code block.
 
Old 08-14-2019, 04:24 AM   #439
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by bodge99 View Post
Hi,

The "" character acts as a "continuation" marker.. This just splits one long line into six for ease of reading.
You could do it one line at a time, by dropping the "" on each line.

I'm going to be busy for a couple of hours, so no rush..

Bodge99
There are no "" marks anywhere. I do see \ at the end of each line. Are you sure you did it right?
And if were to do 1 line at the time, without the \ at the end of each line, does it then have to write the output to a .txt file each time?

Last edited by Klaas Vaak; 08-14-2019 at 04:27 AM.
 
Old 08-14-2019, 06:09 AM   #440
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,

I don't understand how the "" was posted like this.. I'd typed
Code:
"/" and not ""
. I still have the original.. I normally write my replies in xed before I copy & paste into "Quick Reply"..
I was just trying to make things easier for you.. Ho hum..

Try this (separate lines):
Code:
sudo su
echo DMESG > mystuff.txt ; dmesg >> mystuff.txt 
echo LSHW >> mystuff.txt ;  lshw >> mystuff.txt
echo LSUSB >> mystuff.txt ; lsusb >> mystuff.txt
echo LSPCI >> mystuff.txt ; lspci >> mystuff.txt
echo LSMOD >> mystuff.txt ; lsmod >> mystuff.txt
echo BORG >> mystuff.txt ; systemctl | grep running >> mystuff.txt
Bodge99

EDIT: I see why now, the forum software is interpreting the forward slash in body text as part of a delimiter..

Last edited by bodge99; 08-14-2019 at 06:12 AM.
 
Old 08-14-2019, 06:14 AM   #441
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by bodge99 View Post
Hi,

I don't understand how the "" was posted like this.. I'd typed
Code:
"/" and not ""
. I still have the original.. I normally write my replies in xed before I copy & paste into "Quick Reply"..
I was just trying to make things easier for you.. Ho hum..

Try this (separate lines):
Code:
sudo su
echo DMESG > mystuff.txt ; dmesg >> mystuff.txt 
echo LSHW >> mystuff.txt ;  lshw >> mystuff.txt
echo LSUSB >> mystuff.txt ; lsusb >> mystuff.txt
echo LSPCI >> mystuff.txt ; lspci >> mystuff.txt
echo LSMOD >> mystuff.txt ; lsmod >> mystuff.txt
echo BORG >> mystuff.txt ; systemctl | grep running >> mystuff.txt
Bodge99

EDIT: I see why now, the forum software is interpreting the forward slash in body text as part of a delimiter..
See attachment.
Attached Files
File Type: txt mystuff.txt (76.7 KB, 6 views)
 
Old 08-14-2019, 12:53 PM   #442
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,
Klaas:

Thanks for the file..

Could you try this:
Code:
sudo mv /usr/sbin/rfkill /usr/sbin/rfkill.disabled
And reboot.

Rfkill is normally used to enable and disable wifi.
I've seen comments from folk that this has helped with laptops whose keyboards are disabled on return from suspend.

You may find that you lose desktop wifi on/off control..

If this is of no help with the keyboard after resume, then simply:
Code:
sudo mv /usr/sbin/rfkill.disabled /usr/sbin/rfkill
Bodge99
 
Old 08-14-2019, 03:33 PM   #443
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,345

Rep: Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588
Add these two back to your /etc/default/grub
Code:
atkbd.reset=1  i8042.dumbkbd=1
rerun update-grub and disable the screensaver.
 
Old 08-15-2019, 05:13 AM   #444
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by bodge99 View Post
Could you try this:
Code:
sudo mv /usr/sbin/rfkill /usr/sbin/rfkill.disabled

Rfkill is normally used to enable and disable wifi.
I've seen comments from folk that this has helped with laptops whose keyboards are disabled on return from suspend.

You may find that you lose desktop wifi on/off control..
That last sentence is a not acceptable for me because, if ever in the future I have a problem with Wifi and need to switch it off, I don't want to spend hours trying to figure out why I cannot do so, having forgotten this rfkill action.
 
Old 08-15-2019, 05:14 AM   #445
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by colorpurple21859 View Post
Add these two back to your /etc/default/grub
Code:
atkbd.reset=1  i8042.dumbkbd=1
rerun update-grub and disable the screensaver.
I did, but there was no change: the keyboard is still disabled after resume.
 
Old 08-15-2019, 05:54 AM   #446
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,345

Rep: Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588
Is this a touch screen?
 
Old 08-15-2019, 05:55 AM   #447
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by colorpurple21859 View Post
Is this a touch screen?
Yes.
 
Old 08-15-2019, 08:39 AM   #448
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,
Quote:
That last sentence is a not acceptable for me because, if ever in the future I have a problem with Wifi and need to switch it off, I don't want to spend hours trying to figure out why I cannot do so, having forgotten this rfkill action.
It was just a suggestion to see if it had any effect.. It's totally reversible anyway and could be added to a launcher if required..

Bodge99
 
Old 08-15-2019, 08:54 AM   #449
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,345

Rep: Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588
have you check to see if touchscreen keyboard works? go into settings>accessibility>enable assistive technologies. at the login screen tap the accessibility icon at the top

Last edited by colorpurple21859; 08-15-2019 at 08:55 AM.
 
Old 08-15-2019, 08:54 AM   #450
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,

I spent quite a bit of time looking at forcing hardware to reinitialise after suspend or hibernation. I've had some success with non-systemd distro's but I've found that anything with systemd is **very** inconsistent. I've now made the decision to move away from any systemd distro totally as I don't like what I'm seeing with it. I'll be a little sad to dump Mint as I recommend it to new starters as it's quite easy to use.
Next jobs here.. how to persuade SWMBO to move to Devuan or Slackware..

BTW, The Linx 10 (rev. 1.2 mainboard) tablet that I was looking at.. I couldn't get suspend to work at all with Mint Xfce.. Suspend works perfectly fine with Devuan Xfce. I'm going to try AntiX with Xfce and kernel 5.x.x and see how this copes with Bay Trail. I want a lightweight distro here.

Bodge99

Last edited by bodge99; 08-15-2019 at 08:56 AM.
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Antix best distro for netbook? nejnej25 Linux - Laptop and Netbook 4 01-21-2018 09:02 PM
[SOLVED] Conky display gets corrupted since updating Antix-16 to Antix-17 hazel Linux - Distributions 3 12-18-2017 08:55 AM
LXer: Debian-Based antiX MX-16.1 Distro Introduces Experimental Encrypted Home Folders LXer Syndicated Linux News 0 06-11-2017 08:37 AM
LXer: antiX M12 test 2 : A light-weight and fast Linux distro for older systems LXer Syndicated Linux News 0 03-07-2012 11:41 PM
LXer: New AntiX distro makes older hardware usable LXer Syndicated Linux News 0 06-26-2007 08:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

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