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 - 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 09-25-2020, 09:03 AM   #16
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled

Quote:
Originally Posted by colorpurple21859 View Post
chroot into your arch system post the output of
Code:
ls /boot
Code:
efi  grub
 
Old 09-25-2020, 09:13 AM   #17
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
Did you mount the efi partition to /boot/efi before running the grub-mkconfig?
yes, which can be seen here https://ibb.co/XJwbpP0
 
Old 09-25-2020, 09:55 AM   #18
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
You have no vmlinuz or initramfs in /boot. do you have a separate boot partition? If so you will need to mount it to /mnt/boot before chroot or /boot after chrooting into the system before running grub-mkconfig

Last edited by colorpurple21859; 09-25-2020 at 09:59 AM.
 
Old 09-25-2020, 10:04 AM   #19
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
You have no vmlinuz or initramfs in /boot. do you have a separate boot partition? If so you will need to mount it to /mnt/boot before chroot or /boot after chrooting into the system before running grub-mkconfig
on the same disk? i dont think so. how could i check that?

Last edited by Arch4GoodieLike; 09-25-2020 at 10:10 AM.
 
Old 09-25-2020, 10:13 AM   #20
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
post your /etc/fstab
 
Old 09-25-2020, 10:16 AM   #21
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
post your /etc/fstab
how i get that? i'm still in chroot mode.
 
Old 09-25-2020, 10:18 AM   #22
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
Code:
cat /etc/fstab
take a picture

Last edited by colorpurple21859; 09-25-2020 at 10:23 AM.
 
Old 09-25-2020, 10:29 AM   #23
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
Code:
cat /etc/fstab
take a picture
oops, i accidentaly used /etc/stab before asking how i could reach that lol...

part1 https://ibb.co/yR2YGsn
part2 https://ibb.co/6DLBhxV
part3 https://ibb.co/Y0bg8Rs
 
Old 09-25-2020, 10:45 AM   #24
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
Your mount points are wong compared to your fstab
your picture in post #17 shows /dev/sda3 mounted on /
/dev/sda1 mounted on /boot/efi.
your fstab has /dev/sda1 on /
/dev/sda3 swap and /dev/sda2 /boot
do this
Code:
umount /dev/sda1 
mount /dev/sda2 /boot
mount /dev/sda1 /boot/efi
grub-mkconfig -o /boot/grub/grub.cfg
If you get found vmlinuz... when grub-mkconfig is run
then will have to fix your /etc/fstab

Last edited by colorpurple21859; 09-25-2020 at 10:47 AM.
 
Old 09-25-2020, 10:57 AM   #25
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
Your mount points are wong compared to your fstab
your picture in post #17 shows /dev/sda3 mounted on /
/dev/sda1 mounted on /boot/efi.
your fstab has /dev/sda1 on /
/dev/sda3 swap and /dev/sda2 /boot
do this
Code:
umount /dev/sda1 
mount /dev/sda2 /boot
mount /dev/sda1 /boot/efi
grub-mkconfig -o /boot/grub/grub.cfg
If you get found vmlinuz... when grub-mkconfig is run
then will have to fix your /etc/fstab
got a mount error on
Code:
sda2
see pic
https://ibb.co/r4XTdw2
 
Old 09-25-2020, 11:21 AM   #26
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
Post lsblk -f and df - h
 
Old 09-25-2020, 11:27 AM   #27
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
Post lsblk -f and df - h
https://ibb.co/KsswZGX
and
https://ibb.co/d5R2nPg

Last edited by Arch4GoodieLike; 09-25-2020 at 11:39 AM.
 
Old 09-25-2020, 12:25 PM   #28
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
Your missing /boot data for some reason. If you have the vmlinuz and initfsram backed up you need to copy backover to the /boot on /dev/sda3, if not you will need to reinstall the linux package.
 
Old 09-25-2020, 12:31 PM   #29
Arch4GoodieLike
Member
 
Registered: Sep 2020
Location: Cave
Distribution: Arch Linux
Posts: 143

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by colorpurple21859 View Post
Your missing /boot data for some reason. If you have the vmlinuz and initfsram backed up you need to copy backover to the /boot on /dev/sda3, if not you will need to reinstall the linux package.
i guess reinstall the linux backage is more easy, since i havent to connect my backupdevice and etc? can you guide me how to do the reinstall of linux backage?
 
Old 09-25-2020, 12:37 PM   #30
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,392

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594
post
Code:
ls /boot/efi
 
  


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
Remote Backup script needed | backup every 1-2 seconds (Online/Hot backup) reda Linux - Newbie 4 04-20-2019 05:02 PM
Replacing BIOS jmh72 Linux - Laptop and Netbook 10 04-07-2018 05:59 PM
[SOLVED] Backup, shrink backup and modify MBR of backup jps1x2 Linux - General 1 12-17-2013 05:03 AM

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

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