You are not logged in.
Pages: 1
Hello Arch community.
First I'm dual-booting arch with windows11 (windows 11 only for gaming thx to riot games vanguard), i installed the system perfectly and everything working fine BUT when I ran :
sudo grub-mkconfig -o /boot/grub/grub.cfg
I got :
/usr/bin/grub-mkconfig: line 270: /boot/grub/grub.cfg.new: No such file or directory
Now I know that I have made some mistake during the installation process but I cant figure out what, I tried to ls /boot and the folder is empty, which I guess it's a problem in mounting boot partition or generating fstab file (I'm not confident but those are my guesses)
can someone please help this newbie
Note:windows are working prefectly and my arch but I need to fix this issue.
Offline
What is the output of mount | grep boot
I wager it is nothing. You probably do not have your boot *partition* mounted on your boot *mountpoint*.
You probably missed the step where you create /etc/fstab
We can help fix that if it is the problem
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
yup it returned nothing.
so what is the next step?
Offline
Using the command lsblk -f list your disk volumes with the UUIDs. Find the one for your boot partition (it will be a vfat volume and will probably have a shorter UUID than most of the others)
As root, edit the file /etc/fstab and add a line that looks like this:
UUID=xxxx-xxxx /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 2Replacing xxxx-xxxx with the UUID of your boot volume.
Reboot. Check the contents of /boot. Also, see the output of the mount command we just tried.
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
it worked perfectly, thank you for your time.
when last thing.
in general how can I be a master at arch,I mean I can do some general-basic things but i cant maintain the system by my self, i want to reach a master level.
Offline
Offline
xD?
Offline
There is no such thing as "master level". Create yourself a safe environment (backups!) where you can tinker and practice. Read the wiki, try some new things, read the manpages, read some articles.
Offline
Pages: 1