DEV Community

Cover image for Install Fedora 37 or earlier on Windows Subsystem for Linux (WSL)

Install Fedora 37 or earlier on Windows Subsystem for Linux (WSL)

Jonathan Bowman on July 13, 2020

Using Windows Subsystem for Linux (WSL), we have a choice of Linux distributions available in the Windows Store, such as Ubuntu, Kali, Debian, etc....
Collapse
 
martinhinze profile image
martin-hinze

How can we quickly create a new instance of our WSL Fedora linux? Jonathan suggests saving our customized installation by exporting it, so we can import it to get a new and clean system. This works fine. However, I would like to present an alternative: I wrote a bash script, that does the steps described above and keep it in my gitlab.com account. So I can download a new and blank container version of Fedora, launch it and run

bash <(curl -s https://gitlab.com/-/snippets/2572575/raw/main/set-up-cont-fedora.sh))
Enter fullscreen mode Exit fullscreen mode

(This script adds a non-root user, adds some basic dnf packages and man pages.)
I prefer this because I start with the current release and don't need to upgrade an older container.

Warning: Always be careful when running code from unofficial sources. :-)

Collapse
 
bowmanjd profile image
Jonathan Bowman

I love this, @martinhinze ! Way to automate.

Collapse
 
martinhinze profile image
martin-hinze • Edited

I just realized @trens wrote a similar script earlier.

Collapse
 
umineiro profile image
UMineiro • Edited

To be able to setup the locale within fedora you need systemd. To get around this you can use the following (substitute en, en_US with your locale strings):

dnf -y install glibc-common glibc-locale-source glibc-langpack-en
localedef --force -f UTF-8 -i en_US en_US.UTF-8
Enter fullscreen mode Exit fullscreen mode

Additionally, you may want to install your locale resources, sucha as:

dnf -y install langpacks-core-en_US langpacks-en_US man-pages-en_US
Enter fullscreen mode Exit fullscreen mode

And donยดt forget to check and change if necessary /etc/locale.conf and /etc/locales.conf

Collapse
 
bowmanjd profile image
Jonathan Bowman

Thanks for these tips! OK if I incorporate them into the article?

Collapse
 
umineiro profile image
UMineiro

Sure. Go ahead! Notice that I've edited the tip to add a last step.

Collapse
 
shashilx profile image
Roman Papusha

Tried to install first non-US locale and then en_US (en) locale - now it's ignore file /etc/locale.conf and always set en_US.UTF-8
Also command

export LANG=ru_RU.UTF-8

only affects to "locale -a" command and non-localize any other packages.

Collapse
 
trens profile image
baldarrding

i don't know if this is helpful but i was bored so i made a script to run through the steps quickly. its not that good i know, but i was bored. worked for me.

#!/bin/bash
##
## wsl --import <Distro> <InstallLocation> <FileName> [Options]
##
## wsl --import fedora o:\wsl\fedora o:\wsl\fedora.36.base.layer.tar --version 2
## 
echo ""
echo ""
echo "You need to be root right now to do this."
echo "You will need to enter a username then a nameserver."
echo "like this: bash fstrap.fedora.wsl.from.rootfs.sh '1.1.1.1'"
echo ""
echo ""

if ! [ "${EUID:-$(id -u)}" -eq 0 ]; then
   echo ""
   echo "I am not root!"
   echo ""
   exit 1
fi


# uname_ is the username you want your username to be
uname_=$1
# dnsip0_ and dnsip1_ are the nameservers you want to use
dnsip0_=$2
dnsip1_=$3
rtest_="root"

if [ "$uname_" == "$rtest_" ]; then
   echo ""
   echo "you need to add a new user!"
   echo ""
   exit
fi

echo ""

if [ -z "$dnsip0_" ]; then
   echo ""
   echo "remember to include at least one nameserver like this bash script.sh username 'nameserverIP' "
   echo ""
   exit
fi
echo ""

grep -v nodocs /etc/dnf/dnf.conf | tee /etc/dnf/dnf.conf

echo ""
echo ""

# tells wsl to not set nameserver automatically
echo -e "[network]\ngenerateResolvConf=false" > /etc/wsl.conf
echo -e "\n[user]\ndefault=$uname_" >> /etc/wsl.conf 

# sets first namserver
echo "nameserver $dnsip0_" > /etc/resolv.conf

# sets second nameserver if its there
if [ -n "$dnsip1_" ]; then
   echo "nameserver $dnsip1_" >> /etc/resolv.conf
fi

dnf update 
dnf install man-pages man-db -y
dnf install passwd cracklib-dicts shadow-utils procps-ng iputils util-linux iproute net-tools dnf-plugins-core dnf-utils findutils -y
dnf install util-linux-user zsh zsh-autosuggestions zsh-syntax-highlighting powerline-fonts gcc make cmake pkgconfig info man nano nbd nss-tools neofetch zip htop python3-pip wget curl sudo ncurses -y
sysctl -w net.ipv4.ping_group_range="0 2000"
dnf clean all

useradd -G wheel "$uname_"
passwd "$uname_"
Enter fullscreen mode Exit fullscreen mode
Collapse
 
bowmanjd profile image
Jonathan Bowman

Great automation!

Collapse
 
duvjones profile image
duvjones • Edited

Ok so I managed to use CentOS Stream in lue of Fedora.
My primary reason for the switch honestly has alot to do with Fedora's release cycle.... Fedora moves rather swiftly (give or take, A new Fedora every 6-9 months) and CentOS Stream moves slower. For something that is going to be on my window partition, CentOS makes alot more sense for me.
I ended up using the rootfs method. For those that care, the best way to go about that is to click on cloud install on CentOS which will bring you to this directory, and then grabbed the

CentOS-Stream-Container-Base-9-latest.x86_64.tar.xz
Enter fullscreen mode Exit fullscreen mode

file while follow the rest of the instructions.

Just thought that I mention it if you care....

Collapse
 
bowmanjd profile image
Jonathan Bowman

I love this! Choosing CentOS Stream makes perfect sense. Thanks for the links to the rootfs!

Collapse
 
bobhenkel profile image
Bob Henkel • Edited

Thank you Jonathan! This article is top notch, it helped me out so much!

I've been in a MacOS and Linux world for about 10 years now. Just made the switch to a Windows11 desktop as my daily driver thanks to wsl2. That integration has been fantastic and being able to use my distro of choice fedora makes it all the better. Thanks again! Bob

PS, finding out about Micro editor is a cherry to top things off!

Collapse
 
duvjones profile image
duvjones

Hi, I seem to be having an issue with /etc/resolv.conf
I am running Fedora 36 as instructed here but for some reason I can't unlink to said file because it doesn't exist in the rootfs. If I attempt to write it myself, upon my next access to fedora through wsl, it's just gone... I have to rewrite the file any time that I want use dnf or anything else internet related (which is alot in linux). Can you help me solve this?

Collapse
 
bowmanjd profile image
Jonathan Bowman

Thanks for trying to work through this! First question: do you need to edit /etc/resolv.conf? Have you tried it without making changes?

Collapse
 
duvjones profile image
duvjones

That is the thing, I don't need to edit /etc/resolv.conf. I need to create it. The file doesn't exist on boot, and every reboot of my system pulls the file system to the default state. So on every reboot, the file doesn't exist... my problem with that is DNF needs the access to the internet and without /etc/resolv.conf their isn't anything, and I tend to do things in steps... so having access to the net on boot is useful.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

So, can you confirm: you had no Internet access before you tried changing /etc/resolv.conf?

Also, in /etc/wsl.conf, what is the current generateResolvConf set to? True or false?

Hopefully we can figure this out!

Thread Thread
 
duvjones profile image
duvjones

Well that solved it, it was originally false.... setting it to true corrects things

Thread Thread
 
duvjones profile image
duvjones

Thank you for the help

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Excellent!

Thread Thread
 
duvjones profile image
duvjones

Ok, then maybe you can solve another question that I have.... I also seem to be having trouble with mounting a physical partition on my extra SSD. Keeps tossing out a error, with every attempt to mount it.
Would you have any ideas?

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Hmmm... I have not tried to do that. What is the error?

Thread Thread
 
duvjones profile image
duvjones

It is tossing out error code -22 when I attempt to use

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

I can't say I am familiar with that message. It only gives a code and not a complete message? That is odd. Sorry I am not of more help.

Collapse
 
haosmos profile image
haosmos • Edited

Thank you for the detailed instruction!

I have installed fedora and the distribution is running. But for some reason, the standard commands are not available:

[haosmos@Haosmos-PC haosmos]$ cd ~/
[haosmos@Haosmos-PC ~]$ nano .bashrc
-bash: nano: command not found
[haosmos@Haosmos-PC ~]$ find find .bashrc
-bash: find: command not found
[haosmos@Haosmos-PC ~]$ clear
-bash: clear: command not found

When trying to download and install any program or utility, the same error is always displayed:

The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Error downloading packages:
Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=fedora-33&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org].

How do I fix these problems?

Collapse
 
bowmanjd profile image
Jonathan Bowman

@haosmos , you were right and I was wrong!

Apparently, Fedora 33 uses systemd-resolvd, and when we upgrade packages with dnf upgrade something was overwriting /etc/resolv.conf with a link to /run/systemd/resolve/stub-resolv.conf which didn't actually exist.

So, I updated the instructions to include a workaround for Fedora 33. Please let me know if it works!

I also added a tip at the end to install findutils and ncurses. Let me know if you think other basic packages should be included. Thanks!

Collapse
 
bowmanjd profile image
Jonathan Bowman • Edited

I am curious: what does your /etc/resolv.conf look like?

Here is mine:

nameserver 1.1.1.1
nameserver 8.8.8.8
Collapse
 
haosmos profile image
haosmos • Edited

cat: /etc/resolv.conf: No such file or directory
[haosmos@Haosmos-PC ~]$

But file resolf.conf exist:

cloud.mail.ru/public/5BVW/2zYiramvC

Thread Thread
 
bowmanjd profile image
Jonathan Bowman • Edited

OK. That could be the issue. Judging by your screenshot, you may want to first rm /etc/resolv.conf

Then can you follow the "Ensure DNS is functioning" part of the article and make sure that two files have been edited appropriately: /etc/resolv.conf and /etc/wsl.conf. Then restart your machine? I am very curious if that works for you or not.

Thread Thread
 
haosmos profile image
haosmos • Edited

After many attempts (a lot of re-installations and reboots of the computer) I finally installed fedora in wsl and set it up)).

Everything seems to be working. I was able to install everything I needed (my goal was to configure the right working environment for web development).

I don't know what the problem was โ€” why I had to start over many times, but wsl (fedora) worked in a strange way: the standard commands didn't work ("cat", "clear", "nano", etc.), or it was impossible to download and install programs and utilities (Curl error (6): Couldn't resolve host name for mirrors.fedoraproject.org/metalink... [Could not resolve host: mirrors.fedoraproject.org].).

Eventually, I set up fedora according to your tutorial, except that I didn't execute the commands:

echo -e "[network]\ngenerateResolvConf = false" > /etc/wsl.conf

and

echo nameserver 1.1.1.1 > /etc/resolv.conf

Now I have this content of the resolv.conf file:

cat /etc/resolv.conf

// This file was automatically generated by WSL. To stop automatic generation of this file, add the following entry to /etc/wsl.conf:
// [network]
// generateResolvConf = false
nameserver 172.29.16.1

In my well-working wsl 2 ubuntu-20.04 the content of the resolv.conf file is exactly the same.

I don't know if this will be a problem in the future (what I didn't specify in the resolv.conf: nameserver 1.1.1 according to your instructions) but so far everything seems to be working fine.

Tell me, please, what do I need to specify in the resolv.conf: nameserver 1.1.1.1 file for?

Maybe I should add it to my resolv.conf file?

Or if everything works as expected I don't have to add or change anything in my resolv.conf file?

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Thank you for your feedback! I have updated the DNS section to include more specific instructions for removal of the offending link in Fedora 33, and also prefaced that with acknowledgement of the default automatically-configured resolv.conf provided by WSL. I hope this helps!

Collapse
 
operation420_net profile image
operation420_net • Edited

Did you try dnf clean packages as suggested?

[root@operation420.net ~]$ dnf clean all && dnf update

PS I dunno nano, VIM is the hardcore editor/IDE!!!

Collapse
 
scottbeamer profile image
Scott Beamer

Vim is ovekill for simple text editing tasks.

Collapse
 
operation420_net profile image
operation420_net

Did you try dnf clean packages as suggested?

[root@operation420.net ~]$ dnf clean all && dnf update

PS I dunno nano, VIM is the hardcore editor/IDE!!!

Collapse
 
laoweek profile image
Laoweek • Edited

sysctl won't persist after WSL reboot. You can set kernel parameters using C:\Users\username\.config or /etc/wsl.conf (Windows 11 only). (github.com/microsoft/WSL/issues/42...)

Seems like you would need to use absolute path to sysctl if you are editing wsl.conf tho because sysctl is not loaded to $PATH yet. (github.com/microsoft/WSL/issues/42...)

Collapse
 
bowmanjd profile image
Jonathan Bowman

I have updated the article to include this great suggestion, @laoweek. Thank you so much!

Collapse
 
cfigueiroa profile image
cfigueiroa

Even in out of box supported distros (e.g. Ubuntu) i always found installing distros using Microsoft Store clunky (who wants theirs installs in a folder like: C:\Users<username>\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\ ?), and now you opened my mind about this method.

Many kudos to you!

Collapse
 
bowmanjd profile image
Jonathan Bowman

I agree!

Collapse
 
naruaika profile image
Naufan Rusyda Faikar • Edited

I don't know why when I installed Fedora this way, I'm able to write into Windows NTFS (C:/) although it's so slow. But when I installed Ubuntu from the Microsoft Store, I couldn't. Can you give me some insight? Thanks in advance. I found this article very helpful!

Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
naruaika profile image
Naufan Rusyda Faikar • Edited

Sorry if I am bothering you. I have no idea why. But after running wsl -t ubuntu then wsl -d ubuntu, now it works. The only thing is it's so slow. Should I move my project folder into WSL ext4 hard disk image file? Or should I just format my D:/ to ext4? What is your advice? Thanks.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

So, especially in WSL 2, Windows disk performance is very, very poor. Try doing your work in the Linux filesystem (in your home directory, for instance) instead. Is that faster?

Thread Thread
 
naruaika profile image
Naufan Rusyda Faikar

Yes, indeed, it is much faster.

Collapse
 
naruaika profile image
Naufan Rusyda Faikar

Sorry, but I couldn't find wsl.conf anywhere. Where should it be?

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

My apologies; I wasn't thinking and gave you wrong advice about the [interop] section. That doesn't have anything to do with mounting Windows drives from WSL.

Collapse
 
miqui profile image
Miguel Quintero

i run: wsl -d Fedora-33

..but get no default shell.. did i miss something?

Collapse
 
bowmanjd profile image
Jonathan Bowman

Interesting. Can you show us your entire wsl --import command?

Collapse
 
timfw profile image
TimFW

I think the problem may be he did not install windows virtual machine feature or install WSL 2. regardless if that is the issue there are likely many that do not have the update to WSL2 and think it would have been handled thru normal Windows Update System.

As you really have made such a detailed easy to follow how to article it might be best to update it.

  • First making sure their Win 10 build is above 18362.1049 or higher.

  • Update if not. Include installing the VM function feature which is easy as you just add it where you turn on "Windows sub system for Linux".

  • Restart System

  • Add the download link for "WSL2 Linux kernel update package for x64 machines" (link straight from microsoft website) wslstorestorage.blob.core.windows....

  • Have them run the update package downloaded in the previous step. (Double-click to run - you will be prompted for elevated permissions, select โ€˜yesโ€™ to approve this installation.)

  • Restart System

  • Set WSL 2 as the default WSL version. Open Powershell and run " wsl --set-default-version 2 "

  • You can also reference this Microsoft Sites Documentation on how to upgrade
    docs.microsoft.com/en-us/windows/w...

You could just reference it and not list the steps or just list it for those that have issues from legacy systems updates.

Thread Thread
 
timfw profile image
TimFW

Ok I just did a fresh Win 10 install fully updated Windows Linux subsystems and Windows Virtual Machine Features added. Installed wsl 2 thru the linx update package I linked to. Set WSL 2 as default thru PS. Created the
"C:\Users\WSL\fedora" folder in the user profile root. Downloaded and renamed the fedora-32-rootfs.tar file. (I chose Fedora 32) Imported it. Ran it with "wsl -d fedora" But as Miguel Quintero posted it did not open a bash promote. Just had the same Powershell "PS C:\Users\Username> " prompt.

Next I checked to confirm it was running with "wsl -l --running" with output of:

"Windows Subsystem for Linux Distributions:
fedora (Default)"

Thus that confirms wsl fedora was running. ( I actually tried all of this before activating Windows VM or thte WSL 2 Linus package update to emulate a user running your instructions but not knowing about the WSL 2 package or activation of Windows VM add on. When I checked for running instances the output was " no running linux distro" or something to that effect. But it did install etc.

So there is still something hinky going on as with everything done on a fresh install fully updated and all installs and upgrades down while WSL 2 claims its running there is no bash prompt to run inside fedora linux.

I wonder if with the last win update MS made it so you can only install distro roots thru the Store. After all to download the Fedora Remix they state is from upstream its $10. Nice they are monetizing for open source freeware. You had to know that was the entire reason they got into the Linux game in the first place. Pulling a google on opensource projects.

Thread Thread
 
timfw profile image
TimFW

I tried installing Ubuntu 18.04 LTS and it worked and bash opened without issue. So something is is different doing it thru this manual way.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Wow, thank you for testing this! I will seek to replicate, and adjust the article accordingly.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman • Edited

@timfw , I am unable to replicate this. I believe you, though. Indeed something strange must be going on.

Could you verify what rootfs version you downloaded, and what tool you used to unpack? Not sure that will be fruitful, but thought I would check. I suspect you are right that this has something to do with WSL configuration.

Also, curious what happens if you wsl -d fedora -- bash or similar?

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

@timfw , I have made some changes to the article as you suggested, giving a bit more detail about upgrading to WSL version 2 and also detailing multiple options for rootfs download. I don't think this resolves the issue you are identifying, unless perhaps a newer rootfs fixes it?

Thread Thread
 
timfw profile image
TimFW

I used the fedora 32 x64 you linked to here
this is the file name it downloaded Fedora-Container-Base-32-20201205.0.x86_64.tar.xz I used7zip to decompress it to a tar.

Something weird though. The first time I downloaded it the file ended with the .tar.xz. But now since I originally decompressed it everytime I download it comes as just .tar not .tar.xz in the download directory. I assume its because of 7zip already decompressing it to just a .tar. I hate programs deciding for me how to help grrr...

I insured wsl 2 was the default.

I renamed the decompressed .tar to fedora-32-rootfs.tar
I then created the folder mkdir C:\users\username\wsl\fedora

Next imported the .tar to \wsl\fedora with "wsl --import c:\user\username\download\unzip\fedora-32-rootfs.tar c:\user\username\wsl\fedora\"

I checked and confirmed it was installed in that directory.

Next ran "wsl -d fedora" and after a pause it just returns me to the next line standard prompt in PS. I tried running both as user and admin.

I run "wsl -l -running" and it shows fedora default is running.

I check inside ~\wsl\fedora in Win Explorer and it now shows a ext4 virtual drive

But thats it.

Now I went thru the Win Store and downloaded Ubuntu 18.04 LTS and thru whatever auto .msi it installs it with I get an immediate bash window .Windows installs the ubuntu1804.exe in C:\Users\Username\AppData\Local\Microsoft\WindowsApps directory

It also installed a entire user directory set for Ubuntu in C:\Users\Lenovo\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu18.04onWindows_79rhkp1fndgsc

Thread Thread
 
timfw profile image
TimFW • Edited

after a reboot

in PS going to ~\wsl\fedora here is the output of a dir cmd

These are c&p of the text in PS:


PS C:\Users\Lenovo\wsl\fedora> dir
Directory: C:\Users\Lenovo\wsl\fedora
Mode LastWriteTime Length Name


-a---- 12/7/2020 12:00 AM 246415360 ext4.vhdx
PS C:\Users\Lenovo\wsl\fedora>


Then a check to confirm no running distributions followed by the "wsl -d fedora" cmd and as you can see it just returns a standard PS Windows prompt.

These are c&p of the text in PS:

PS C:\Users\Lenovo> wsl -l --running
There are no running distributions.
PS C:\Users\Lenovo> wsl -d fedora
PS C:\Users\Lenovo>
PS C:\Users\Lenovo> wsl -l --running
Windows Subsystem for Linux Distributions:
fedora (Default)

PS C:\Users\Lenovo>

No bash window opened nothing

But if I wait about a minute and then rerun the wsl -l --running I get this


PS C:\Users\Lenovo> wsl -d fedora
PS C:\Users\Lenovo> wsl -l --running
Windows Subsystem for Linux Distributions:
fedora (Default)

PS C:\Users\Lenovo>

The Ubuntu thru the store works fine. In fact I just git gcc compiled and produced a binary for CryFS encryption program which is a updated and secured version EncFS.

I just do not get why Fedora installed manually does not work?? It even shows it as a virtually mounted drive.

Thread Thread
 
timfw profile image
TimFW • Edited

Finally SUCCESS!!!!

I took your recommendation about it maybe an issue with the roofs downloaded. I downloaded the one form the docker link you provided.

I terminated and then unregistered the current not working fedora 32 from December 5,your link in here:

"Find the right "xz" file for your platform (likely x86_64). Such as this one for the December 5, 2020 build of Fedora 33. Or, if you were still wanting Fedora 32, this Fedora 32 build from December 5 should work."

Not sure if you updated that when you edited the article. The one from that link prior to it may be bad as its what did not work.

I followed the docker github link to github.com/fedora-cloud/docker-bre...
and it produced a successful install finally.
PS C:\Users\Lenovo>wsl -t fedora
PS C:\Users\Lenovo>wsl --unregister fedora
PS C:\Users\Lenovo>
PS C:\Users\Lenovo> wsl --import fedora c:\Users\Lenovo\wsl\fedora c:\Users\Lenovo\Downloads\fedora-33-rootfs.tar

PS C:\Users\Lenovo> wsl -l
Windows Subsystem for Linux Distributions:

Ubuntu-18.04 (Default)

fedora

PS C:\Users\Lenovo> wsl --set-default fedora
PS C:\Users\Lenovo> wsl -l --running
There are no running distributions.

PS C:\Users\Lenovo> wsl -l --verbose
NAME STATE VERSION

  • fedora Stopped 2

Ubuntu-18.04 Stopped 2

PS C:\Users\Lenovo> wsl -d fedora

[root@Lenovo-THINK Lenovo]#

Yes finally a bash prompt.

Thank you very much Jonathan for a well written set of instructions and improving it. Maybe check that current linked fedora 32 download I mentioned and see if it creates a working rootfs. If it works maybe something got corrupted during my download is all I can think of. I did download it twice though and tried both copies but anything is possible I guess. But no matter I have positive results now thanks to your suggestions.

BTW I am using this to see if Qubes OS Ver 4.0 series can be compiled and binary produced using the Windows linux subsystem. It works 100% on a real Fedora 32+ install with all necessary programs loaded. Want to see if it works here as its a rather complex tool and script system for the build environment.

Again thank you!

Cheers,

Tim

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Excellent! I am glad it is working for you now. I hope your Qubes OS task goes well.

Collapse
 
martinhinze profile image
martin-hinze

I missed having man pages available with this container version of Fedora. Thus, I would like to share how I added man pages to my WSL Fedora system, in case this might be of use to someone else out there.

@bowmanjd : Feel free to include this in your article, if you like, or point out enhancements or how to do it better.

Basically, I told dnf to include man pages when installing packages and then reinstalled all packages already installed.

If you don't have a text editor installed, which you know how to use, run

sudo dnf install nano -y
Enter fullscreen mode Exit fullscreen mode

to install the easy-to-use editor GNU nano.

Delete the line tsflags=nodocs in the file /etc/dnf/dnf.conf with a text editor of your choice and save it, e.g.

sudo nano /etc/dnf/dnf.conf
Enter fullscreen mode Exit fullscreen mode

Update your system and install the man command:

sudo dnf update -y
sudo dnf install man man-pages -y
Enter fullscreen mode Exit fullscreen mode

In your home directory, create a text file reinstall-all-dnf-packages.sh containing the following script:

#!/bin/bash

installedPkgs=$(dnf list installed | tail -n +2 | cut -d ' ' -f 1)
for pkg in $installedPkgs; do
    dnf reinstall $pkg -q -y
done
Enter fullscreen mode Exit fullscreen mode

Make the script runable and run it:

chmod 755 reinstall-all-dnf-packages.sh
./reinstall-all-dnf-packages.sh
Enter fullscreen mode Exit fullscreen mode

Now all man pages should be available. Try, for example, man dnf. :-)

Collapse
 
bowmanjd profile image
Jonathan Bowman

Thanks, again, @martinhinze ! I have now included your good advice in the article. Much appreciated!

Collapse
 
brnvrn profile image
Bruno Vernay

I guess you could use Ansible to continue with the install.
Note that with WSL 2 you loose VirtualBox (unless you are on the very last Windows version)
Very good article anyway, I just finished the install. (Had to deactivate the local McAfee firewall in Windows for the network to work)

Collapse
 
bowmanjd profile image
Jonathan Bowman

Glad you found it helpful! Thank you.

Collapse
 
brnvrn profile image
Bruno Vernay

After a first update and rollback, you might want to add:
exclude=systemd*
in /etc/dnf/dnf.conf

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Thoughtful. Can you say more about the "rollback" part? And what sort of problems you are encountering around package updates? Which packages, specifically?

I think I like the idea. But let's say, for instance, that I want to use systemd-analyze on occasion. (I know, not useful for a non-systemd WSL, but I do maintain other systems as well.) It would seem that I shouldn't exclude systemd updates, then.

In other words, if it is not breaking anything, I could still see some advantages to keeping systemd packages up to date. Thoughts?

Thread Thread
 
brnvrn profile image
Bruno Vernay

The update included dependencies and weak-dependencies and systemd got installed as well as systemd-networkd I guess which deleted resolv.conf ... instantly removing name resolution ... For sure systemd adds itself to /etc/dnf/protected.d/ it does not ease rolling back.
Maybe it is possible to exclude just systemd-networkd I did not try.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Just curious... systemd-networkd is still messing with resolv.conf even after an unlink /etc/resolv.conf then creating a new one?

Collapse
 
krrishdhaneja profile image
Krrish Dhaneja

Hey, @bowmanjd Thanks for your instructions, but as you know that wsl2 doesn't support systemd, how do I install SysVinit in Fedora, I found no docs on Google about this, Can you please help me!

Collapse
 
bowmanjd profile image
Jonathan Bowman

Good question. Are you sure you need systemd or sysvinit? What happens if you run sshd by itself? You may be pleasantly surprised.

Collapse
 
krrishdhaneja profile image
Krrish Dhaneja • Edited

I don't get it, that's kind of a puzzle i think; @bowmanjd

Thread Thread
 
bowmanjd profile image
Jonathan Bowman
sudo dnf install openssh-server
sudo ssh-keygen -A
sudo /usr/sbin/sshd
Enter fullscreen mode Exit fullscreen mode

What do you think? Are the results satisfactory?

Collapse
 
krrishdhaneja profile image
Krrish Dhaneja

I think You mean I can start sshd by itself, that's kind of interesting but what about rest of the services? I may need an init system for that? Ain't I?

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

What other services do you need to run?

Thread Thread
 
krrishdhaneja profile image
Krrish Dhaneja

Till now only sshd, and will be seeing your docker tutorial to start docker, and rest the future will tell! Btw isn't there any way to install systemd on wsl by using original linux kernel instead of wsl2's custom kernel? And isn't there any SysVinit package in Fedora's repository of packages or I have to add a ppa just as in Ubuntu??

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

I would recommend using Hyper-V or Virtualbox to run your own Linux VM, which will then have systemd or other init system. Yes, Fedora already has systemd, and you could find other distros if you prefer openrc or other init system. The issue isn't the installation of systemd, then (and, no, you wouldn't want to try to replace systemd with sysvinit on a systemd-based distro; instead, find a non-systemd distro). The issue is that WSL has its own init system that runs with PID 1. By the way, systemd has little to do with the kernel version installed.

The typical WSL hack I see is running genie. You may try that. But it adds another layer of complexity that is generally unneeded, if all you want is a way to launch long-running processes. Simply launch them. If you need other systemd features, other than services, then maybe you want to look into genie or a separate VM.

Does that make sense?

Thread Thread
 
krrishdhaneja profile image
Krrish Dhaneja

Thanks for suggestion and explanation, would be trying genie!!

Collapse
 
operation420_net profile image
operation420_net

Please see my reply to Krrish Dhaneja

Collapse
 
operation420_net profile image
operation420_net

Krrish Dhaneja, I replied to your other comment with the instructions!!!

Collapse
 
operation420_net profile image
operation420_net

Please see my reply to Krrish Dhaneja

Collapse
 
mrpointer profile image
Timor Gruber

Do you happen to know how can I upgrade the distro to a newer image without losing all info (such as installed packages)?

Collapse
 
bowmanjd profile image
Jonathan Bowman • Edited

Are you saying you have Fedora 32 and want to upgrade to Fedora 33? If so, this works for me:

sudo dnf upgrade --refresh
sudo dnf install dnf-plugin-system-upgrade
sudo dnf system-upgrade download --releasever=33
sudo dnf system-upgrade reboot
sudo dnf system-upgrade upgrade
(Close the terminal and restart; I even restarted wsl, but I am not sure that is necessary.)
sudo rpmdb --rebuilddb
sudo dnf upgrade --refresh
sudo dnf system-upgrade clean
Enter fullscreen mode Exit fullscreen mode

What do you think? Does that work? Wouldn't hurt to do a backup first.

Collapse
 
mrpointer profile image
Timor Gruber

Not exactly what I meant, though it's nice to know that it actually works!
The scenario I'm asking about is having installed a specific build of Fedora, say the latest 33 available from their servers, how can I "install" a newer build that comes, say, a week after? It would require a new rootfs, which doesn't play well with WSL's capabilities at the moment, i.e. I'd have to install a new, separate distro for it to work

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Now that, friend, is a brilliant question. You don't want to just dnf upgrade? Am I hearing you right?

I honestly don't know a good answer yet. I don't know that wsl can import and merge tarballs. I suppose you could unpack a new tarball at the root of your filesystem, but that would scare me. Other thoughts?

Thread Thread
 
mrpointer profile image
Timor Gruber

Well, maybe I'm not familiar enough with how Fedora builds work - Are you saying that simply executing dnf upgrade will keep me up-to-date with the latest system changes occurring to Fedora?
I mean, I know that dnf manages all of the system's packages, but as I work with a non-stable version of Fedora (33), doesn't it mean that you should update your build once in a while? I'm yet to have experience with Fedora's beta releases :)

Thread Thread
 
bowmanjd profile image
Jonathan Bowman • Edited

Oh, yes. dnf upgrade will serve you well! Further details here, including the instructions:

You shouldn't need to do anything to get the final public release, other than install package updates as they become available. You can use "sudo dnf update" or wait for desktop notification.

Thread Thread
 
mrpointer profile image
Timor Gruber

Awesome!!! Well, that truly makes a custom installed Fedora a great candidate for a productive WSL distro ๐Ÿ˜Ž

Thanks for your help!

Collapse
 
martinhinze profile image
martin-hinze • Edited

I tried to do a fresh install of Fedora 35 and unfortunately it doesn't work anymore.
After running
wsl --import Fedora [myInstallFolder] [myRootfs.tar]
I run
wsl -d Fedora
and get the following error message: An error occurred mounting one of your file systems. Please run 'dmesg' for more details.
wsl -l lists Fedora, so the import seemed to work.

Before, I put a fresh installation of Win 11 on my computer, don't know if that has something to do with this error.
WSL kernel version is 5.10.60.1.
Windows version is "Version 21H2 (Build 22000.376)"
PowerShell version is 7.2.1

Already had a look in WSL's Github, but TBH did not really understand if this is my issue.

Any help or suggestions would be greatly appreciated since I love Fedora. Otherwise, the ready-made Ubuntu WSL is working okay.

Collapse
 
bowmanjd profile image
Jonathan Bowman

Thank you for noting the problem. Curious: what was your method for obtaining myRootFs.tar?

Collapse
 
martinhinze profile image
martin-hinze

From the Fedora Container Base I download the newest distro package, in this moment this is release 20211231.0.
In the download folder of my Win 11 machine I receive the file Fedora-Container-Base-35-20211231.0.x86_64.tar.xz. In unzip it with 7-zip and obtain the file Fedora-Container-Base-35-20211231.0.x86_64.tar and rename it to something shorter like fedora-35-rootfs.tar.

I have no idea what might be wrong and even where to start looking for a solution.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Were you able to extract the layer.tar file and rename that? The Fedora-Container-Base-35-20211231.0.x86_64.tar file will not work as a rootfs without further extraction. Hope this helps...

Thread Thread
 
martinhinze profile image
martin-hinze

Thank you for your patience, I indeed failed to extract the layer.tar file, it is working fine now.
(Sorry for the late reply, I was offline for a few days.)

Collapse
 
ecoutinho profile image
Elio Coutinho

Thanks for the article, it was very easy to follow! It annoyed me having to execute 'cd' to go to the homedir on every new shell. Read elsewhere that you can start with 'wsl ~' to achieve that. Thought I should mention.

Collapse
 
operation420_net profile image
operation420_net

Thanks for the 'wsl ~' tip, I will have to try it.

Adding a "cd ~" or "cd /home/user" into /etc/bashrc might help...

Collapse
 
bowmanjd profile image
Jonathan Bowman

Great tip. Thank you so much!

Collapse
 
secends0001 profile image
Leeeee

thanks for the steps, now I have a fedora32 working on wsl2 .
however still looking to the systemd with fedora on wsl2.

so theoretically, we should also enable systemd by this smart guy's ubuntu way, github.com/DamionGans/ubuntu-wsl2-....

however no lucky till now, the worse is fedora won't go with sysinit/service.

Collapse
 
bowmanjd profile image
Jonathan Bowman • Edited

Thank you so much for reading and responding! I am so glad it is working for you. I agree, it is sad about systemd.

You are right that systemd and WSL are not a great combination. But there is a chance you could function without systemd.

Could you identify what needs you have that require systemd? Might be fun to ponder...

Collapse
 
operation420_net profile image
operation420_net

I had the same issue but fixed it. Please see my reply to Krrish Dhaneja.

Collapse
 
nlhnt profile image
Marcin Borawski

Hello,
fedora in wsl doesn't seem to be using systemd - sorry if that sounds like layman speaking I am not an expert in this domain.
I would like to get the services started, which packages should I install?
Using systemctl command shows the following warning/error:

System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down
Enter fullscreen mode Exit fullscreen mode
Collapse
 
mrpointer profile image
Timor Gruber • Edited

There's a known issue with systemd in WSL2 - It's just not officially supported yet...

In the meanwhile, you can try genie - It's the best attempt to solve this at the moment

Collapse
 
bowmanjd profile image
Jonathan Bowman

You got it! That is one of the "hacks" I mentioned in the article. If you need it, it is there. I just don't think everyone needs it.

Not sure I would call it "a known issue" when it is a deliberate design choice about init system. But maybe I am wrong. In other words, nothing is broken. The init architecture is slightly different, though.

Collapse
 
operation420_net profile image
operation420_net • Edited

I had the same issue but fixed it. Please see my reply to Krrish Dhaneja.

Collapse
 
elanshudnow profile image
Elan Shudnow

Hi, thank you for the article. Why not just do the following:
docker pull fedora
docker export to export the fedora container
wsl import to import the fedora container into wsl

Collapse
 
bowmanjd profile image
Jonathan Bowman

That's a brilliant and elegant way to pull a rootfs. Would that have been able to pull snapshots and prereleases such as those offered by Fedora Container Base Project, though?

Thanks for this advice. I am going to experiment a bit, and likely incorporate it into the article.

Collapse
 
elanshudnow profile image
Elan Shudnow

Sorry, not too familiar with Fedora tbh. I mostly use CentOS. Just happened to stumble upon this article and figured I'd comment. Here's an article I was able to find that describes the process: medium.com/@hoxunn/wsl-docker-cust.... There's not a whole lot of information out there on this process and a bit of a pain to find.

Collapse
 
msh2050 profile image
msh2050 • Edited

There is an application on Microsoft store called "easywsl "
you can use it to install any distro directly from docker hub.

Thread Thread
 
bowmanjd profile image
Jonathan Bowman

Nice to know! Thank you so much for sharing. It sounds like this easywsl application basically does the same as a docker pull, docker export, wsl --import, but without having to type out all three commands. Curious if there are other features you value from it.

Thread Thread
 
msh2050 profile image
msh2050

Thanks for replay, they are using Docker HUB API
as in their repo state that :

use Docker Hub API in order to get .tar or .tar.gz images from there. After getting an image, single or multi-layered, we turn it into single image (multi-layered Docker image case) which we easily import as WSL distro.

And there are so many features that make it really easy to manage WSL with GUI.

Collapse
 
jradxl profile image
John Radley

Thank you so much for writing this article.
Just followed it though for Fedora 35 with no problems,
except for the /etc/wsl.conf with adding [user] default string hasn't worked.
But I'm convinced WSL2 isn't going to lure me back from my beloved Ubuntu!

Collapse
 
scottbeamer profile image
Scott Beamer • Edited

Right after dnf install -y passwd cracklib-dicts, I would strongly recommend:

dnf groupinstall "Minimal Install"

There were number of pretty standard-issue packages that weren't already installed in the container, that I was wanting right away ("find", "less" and "which" come to mind).

Collapse
 
krrishdhaneja profile image
Krrish Dhaneja • Edited

how do I start a service(like ssh) if I can't use systemctl in wsl? And how do I install SysVinit?

Collapse
 
operation420_net profile image
operation420_net • Edited

I got cron working in Fedora and Ubuntu on WSL.

Carlos at Whitewater Foundry was most helpful. Here is his reply to my email:

There is a solution that replaces systemctl by a python script that reads the service files and tries to start the services. We donโ€™t distribute it with Fedora Remix because it has mixed results. For example, it works for cron and ssh but no for databases in general. Even in SSH, you need to do an extra step.

Follow these steps to start cron service in Fedora Remix. Works with WSL1 & WSL2:

wget raw.githubusercontent.com/gdraheim...

sudo cp /usr/bin/systemctl /usr/bin/systemctl.bak

sudo cp systemctl3.py /usr/bin/systemctl

sudo dnf install cronie cronie-anacron

crontab -e # Edit your crontab

sudo systemctl start crond

Be aware that each time that the package systemd is updated, you need to run the first three lines of the script.

Collapse
 
operation420_net profile image
operation420_net

Hope my reply helpz

Collapse
 
jlorenzo681 profile image
jlorenzop

Super useful, thanks Jonathan!

Collapse
 
operation420_net profile image
operation420_net • Edited