LinuxQuestions.org
Visit Jeremy's Blog.
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 01-05-2020, 04:21 PM   #1
sauloslack
LQ Newbie
 
Registered: Jan 2020
Location: Brazil
Distribution: Slackware
Posts: 7

Rep: Reputation: 1
Question Linux Mint 19 Cinnamon keyboard and mouse don't work after Slackware 14.2 successful install


Hello people. I have a triple boot in my machine. Windows 10, Linux Mint 19(Cinnamon) and Slackware 14.2 LVWM(delicious distro).

Windows are booting and running ok, Slackware are booting and running all things, but Linux Mint... when i boot into Linux Mint the keyboard and mouse don't work and appear a message about Video Acceleration(i search around the web but i don't find anything who solve this issue).

Before Slackware installation, Mint boot with GRUB. Now, all three OS boot with Lilo. I think i need just a proper configuration in lilo.conf for Linux Mint recognize the things(see the grub information of Mint maybe? but i can't access because the keyboard and mouse don't work on Mint).

My lilo.conf:

# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
# Append any additional kernel parameters:
append=" vt.default_utf8=0"
boot = /dev/sda

#compact # faster, but won't work on all systems.

# Boot BMP Image.
# Bitmap in BMP format: 640x480x8
bitmap = /boot/slack.bmp
# Menu colors (foreground, background, shadow, highlighted
# foreground, highlighted background, highlighted shadow):
bmp-colors = 255,0,255,0,255,0
# Location of the option table: location x, location y, number of
# columns, lines per column (max 15), "spill" (this is how many
# entries must be in the first column before the next begins to
# be used. We don't specify it here, as there's just one column.
bmp-table = 60,6,1,16
# Timer location x, timer location y, foreground color,
# background color, shadow color.
bmp-timer = 65,27,0,255

# Standard menu.
# Or, you can comment out the bitmap menu above and
# use a boot message with the standard menu:
#message = /boot/boot_message.txt

# Wait until the timeout to boot (if commented out, boot the
# first entry immediately):
prompt
# Timeout before the first entry boots.
# This is given in tenths of a second, so 600 for every minute:
timeout = 1200
# Override dangerous defaults that rewrite the partition table:
change-rules
reset
# Normal VGA console
#vga = normal
# Ask for video mode at boot (time out to normal in 30s)
#vga = ask
# VESA framebuffer console @ 1024x768x64k
#vga=791
# VESA framebuffer console @ 1024x768x32k
#vga=790
# VESA framebuffer console @ 1024x768x256
vga=773
# VESA framebuffer console @ 800x600x64k
#vga=788
# VESA framebuffer console @ 800x600x32k
#vga=787
# VESA framebuffer console @ 800x600x256
#vga=771
# VESA framebuffer console @ 640x480x64k
#vga=785
# VESA framebuffer console @ 640x480x32k
#vga=784
# VESA framebuffer console @ 640x480x256
#vga=769
# End LILO global section
# Windows bootable partition config begins
other = /dev/sda1
label = Windows
table = /dev/sda
# Windows bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/sda6
label = Slackware
read-only
# Linux bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/sda5
label = Mint
read-only
# Linux bootable partition config ends

I hope the community can help me with this issue, thank you! LLSW(Long Live to Slackware! I really found my distro of heart but need Linux Mint need to run too)
 
Old 01-06-2020, 02:41 AM   #2
Geist
Member
 
Registered: Jul 2013
Distribution: Slackware 14 / current
Posts: 442

Rep: Reputation: 196Reputation: 196
Slackware has a grub package, too. I haven't use LILO in a long time.

Or, if Mint still has grub, you could try
Code:
grub-install /dev/sda
from a mint terminal with root permissions, since that seems to be your main boot location as per
Code:
# Start LILO global section
# Append any additional kernel parameters:
append=" vt.default_utf8=0"
boot = /dev/sda
Once you have done that grub install, do a
Code:
grub-mkconfig | less
to generate a grub configuration for visual inspection in the 'less' viewer.
If it looks okay, then you can save that configuration file with
Code:
grub-mkconfig -o "the_boot_grub_directory_in_mint/grub.cfg"
, I don't know the path in mint, for my Slackware installation its "/boot/grub/grub.cfg".

If you have the recent version of Slackware then you'll have grub2, too, and you can simply do
Code:
grub-install /dev/sda
from a terminal with root access, too.
 
Old 01-06-2020, 05:38 AM   #3
sauloslack
LQ Newbie
 
Registered: Jan 2020
Location: Brazil
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by Geist View Post
Slackware has a grub package, too. I haven't use LILO in a long time.

Or, if Mint still has grub, you could try
Code:
grub-install /dev/sda
from a mint terminal with root permissions, since that seems to be your main boot location as per
Code:
# Start LILO global section
# Append any additional kernel parameters:
append=" vt.default_utf8=0"
boot = /dev/sda
Once you have done that grub install, do a
Code:
grub-mkconfig | less
to generate a grub configuration for visual inspection in the 'less' viewer.
If it looks okay, then you can save that configuration file with
Code:
grub-mkconfig -o "the_boot_grub_directory_in_mint/grub.cfg"
, I don't know the path in mint, for my Slackware installation its "/boot/grub/grub.cfg".

If you have the recent version of Slackware then you'll have grub2, too, and you can simply do
Code:
grub-install /dev/sda
from a terminal with root access, too.
I think install grub by slackware is the best choice(keyboard and mouse don't work in Mint remember? lol), my lilo is so beatiful with the logo i make and needing to type the system name but ok... i need the three system running and i think GRUB2 it's the jump of the cat! Thank you, i'll post if it's solved and all systems runs ok LLSW
 
Old 01-06-2020, 05:47 AM   #4
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574
Blog Entries: 19

Rep: Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452
You can always edit configuration files from another Linux system. Just boot Slackware and mount the Mint root partition on /mnt. Then edit /mnt/etc/lilo.conf.

But I think it's more likely that the keyboard and mouse problem is an X thing. If you booted to level 3 (text only) you might be able to fix it from inside Mint.

Last edited by hazel; 01-06-2020 at 05:51 AM.
 
Old 01-06-2020, 06:13 AM   #5
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,504

Rep: Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490
Quote:
when i boot into Linux Mint the keyboard and mouse don't work and appear a message about Video Acceleration
You forgot to post whatever that message was so members here are left to guess? Post the error message. I'm not sure what information you have that would make you think it was Lilo and the install of Slackware that caused the problem? Did your mouse and keyboard work previously on Mint? You don't say one way or the other.
 
Old 01-06-2020, 03:06 PM   #6
alekow
Member
 
Registered: Sep 2009
Distribution: Slackware
Posts: 230

Rep: Reputation: 75
I haven't used lilo in a long while, but I think you are trying to run Mint with Slackware kernel. I would install Mint's grub to it's boot partition and chainload it from lilo using the "other=" option. That way you will make sure you are running both systems with the right kernels and append options.
 
Old 01-07-2020, 06:50 AM   #7
sauloslack
LQ Newbie
 
Registered: Jan 2020
Location: Brazil
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 1
Thank you all for help, but Cinnamon don't responds decently with Slackware kernel. The solution is, install Linux Mint on the Linux Mint partition(without formatting for don't have data loss, and backup the files in post-installation). When i install Linux Mint again(same version and kernel) i install the GRUB and this has been replaced LILO, so... all the three systems are functional but the loader now is GRUB. Solved! Every system with your own kernel version
 
  


Reply

Tags
boot, lilo, mint, slackware, tripleboot



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
Unable to launch "cinnamon-session-cinnamon" X session "cinnamon-session-cinnamon" -found; Falling back to default "session." xxxindigo Linux Mint 22 09-01-2019 09:21 AM
[SOLVED] Mint Cinnamon locking up; monitor, keyboard, mouse freeze Lanex Linux - Newbie 1 12-31-2015 01:55 PM
[SOLVED] Linux Mint 17 (Cinnamon) versus Linux Mint 17-1 (Cinnamon) Tikiman Linux - General 2 05-15-2015 02:54 PM
[SOLVED] Linux Mint 16 Cinnamon 64 bit on Asus Vanguard B85: no USB keyboard and mouse gewe Linux - Hardware 5 02-16-2014 09:57 AM

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

All times are GMT -5. The time now is 04:12 AM.

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