LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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-12-2019, 06:09 AM   #421
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2

Quote:
Originally Posted by colorpurple21859 View Post
I think the reason this caused so much problems is the resume= was wrong.
add this to /etc/default/grub and rerun update-grub
Code:
resume=/dev/mmcblk0p3 resumewait
You already mentioned it. I tried it but it does not work, as I explained in comment #403.

Last edited by Klaas Vaak; 08-12-2019 at 06:17 AM.
 
Old 08-12-2019, 06:15 AM   #422
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,

Your SOC (processor package) shares a common ancestry with others to Bay Trail.. Also the Linx tablets use eMMC.
I've also just tried a Cube tablet and suspend works fine with Devuan (no systemd borg here!) but not with Mint..

Bodge99
 
Old 08-12-2019, 07:26 AM   #423
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
Quote:
You already mentioned it. I tried it but it does not work, as I explained in comment #403
okay, I missed that post,
 
Old 08-12-2019, 07:27 AM   #424
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by colorpurple21859 View Post
okay, I missed that post,
No problem ;-)
 
Old 08-12-2019, 06:20 PM   #425
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,

Klaas:

I've just remembered something that will affect how the script I got you to set up runs..

On a standard Mint system.. It won't.. You are running as a normal user.. There is no "wheel" group in Mint (Don't worry about what this is.. it's to do with how the effects of "sudo" propagate), no gksudo (again, don't worry about this) and as you are not logging in as Root, I'll rework it.

My Mint systems are set up slightly differently to yours.. I do this to suit the way I work..

I've made some progress with getting suspend to work on a couple of computers.. I've also found that systemd is actually worse than I thought it was, (IMHO).

More when I get there..

Bodge99
 
Old 08-13-2019, 05:32 AM   #426
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
maybe something in /etc/default/acpi-support needs to be changed. Antix has less options enabled compared to mint. I can't test because I don't have similar machine.

Last edited by colorpurple21859; 08-13-2019 at 05:33 AM.
 
Old 08-13-2019, 06:16 AM   #427
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by colorpurple21859 View Post
maybe something in /etc/default/acpi-support needs to be changed. Antix has less options enabled compared to mint. I can't test because I don't have similar machine.
What do you suggest could changed, or should be looked at for changing, and why?
 
Old 08-13-2019, 06:31 AM   #428
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
Looked at, has suspend options

Last edited by colorpurple21859; 08-13-2019 at 06:32 AM.
 
Old 08-13-2019, 12:49 PM   #429
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,

I've been looking a little further into suspend in Xfce4.
Some of the computers that I've tested with Mint 19.2 Xfce require the resume kernel parameter to be set while some don't..

I've had a quick look how suspend is implemented in Xfce4.

Here is part of ~/.config/xfce4/panel/whiskermenu-1.rc
Code:
command-lockscreen=xflock4
show-command-lockscreen=true
command-switchuser=dm-tool switch-to-greeter
show-command-switchuser=false
command-logoutuser=xfce4-session-logout --logout --fast
show-command-logoutuser=false
command-restart=xfce4-session-logout --reboot --fast
show-command-restart=false
command-shutdown=xfce4-session-logout --halt --fast
show-command-shutdown=false
command-suspend=xfce4-session-logout --suspend
show-command-suspend=false
command-hibernate=xfce4-session-logout --hibernate
show-command-hibernate=false
command-logout=xfce4-session-logout
show-command-logout=true
This shows what would be run for logout, reboot, halt, suspend and hibernate. Most of these are disabled. I assume that there are hooks from systemd elsewhere..

Klaas:
Could you change your kernel parameters in /etc/default/grub to:
Code:
quiet splash i8042.nomux=1 i8042.reset=1 i8042.nopnp=1 rootdelay=5 resume=/dev/mmcblk0p3
Followed by "update-grub" and a reboot please.
The resume setting won't cause any boot problems..

On restart, could you please try the following in a terminal:
Code:
xfce4-session-logout --suspend
This worked on a Toshiba Satellite running Mint 19.1 Xfce where the menu suspend didn't..

Did you manage to reload your firmware defaults??

Bodge99

Last edited by bodge99; 08-13-2019 at 01:06 PM.
 
Old 08-13-2019, 12:59 PM   #430
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
Was a different use ever created to see if it is a problem with a configuration file in the home folder?
 
Old 08-13-2019, 05:34 PM   #431
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
Quote:
xfce4-session-logout --suspend
when you try to come out of suspend if the screen starts to light up and then goes black, try entering your password and hit enter.

Last edited by colorpurple21859; 08-13-2019 at 05:46 PM.
 
Old 08-13-2019, 11:48 PM   #432
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Quote:
Originally Posted by colorpurple21859 View Post
when you try to come out of suspend if the screen starts to light up and then goes black, try entering your password and hit enter.
That did not happen.
 
Old 08-13-2019, 11:53 PM   #433
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

Original Poster
Rep: Reputation: 2
Sorry for the late reply, I was a bit tied up.

Quote:
Originally Posted by bodge99 View Post
Hi,
Could you change your kernel parameters in /etc/default/grub to:
Code:
quiet splash i8042.nomux=1 i8042.reset=1 i8042.nopnp=1 rootdelay=5 resume=/dev/mmcblk0p3
Followed by "update-grub" and a reboot please.
The resume setting won't cause any boot problems..
Done

Quote:
On restart, could you please try the following in a terminal:
Code:
xfce4-session-logout --suspend
Yes, that worked: computer goes into suspend and on pressing e.g. ESC key resumes.
This also works by just using the Suspend button in the Menu.

But .... in both scenarios the keyboard does not function anymore after resuming, so I have to use the touchpad to go into the menu and use the Shutdown button.

Quote:
Did you manage to reload your firmware defaults??
I did not try for the simple reason that I have a phobia to mess/interfere with the BIOS. I have never updated/reloaded/whatever the BIOS/firmware on any of my computers and have never experienced any problems.

Last edited by Klaas Vaak; 08-13-2019 at 11:56 PM.
 
Old 08-14-2019, 03:45 AM   #434
bodge99
Member
 
Registered: Oct 2018
Location: Ashington, Northumberland
Distribution: Artix, Slackware, Devuan etc. No systemd!
Posts: 368

Rep: Reputation: 66
Hi,

Klaas:

Can you copy & paste this to a terminal please (as Root), It's all one line, split over six for ease of reading:
(If you could do this shortly after a cold boot..)
Code:
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
If you could attach it here.. it will be quite large.
I would like to see exactly what the system is currently "seeing".

Bodge99
 
Old 08-14-2019, 03:52 AM   #435
Klaas Vaak
Member
 
Registered: Feb 2019
Distribution: Mint
Posts: 253

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

Klaas:

Can you copy & paste this to a terminal please (as Root), It's all one line, split over six for ease of reading:
(If you could do this shortly after a cold boot..)
Code:
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
If you could attach it here.. it will be quite large.
I would like to see exactly what the system is currently "seeing".

Bodge99
See attachment.
Attached Files
File Type: txt mystuff.txt (61.3 KB, 3 views)
 
  


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 03:31 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