the Website of Timothy McCabe Follower of Christ; Student of Epistemology, Apologetics, and Theology
Home Good News Proofs Questions Presentations Software More

Installing Arch Linux on Mac in Parallels

In January of 2020, I had need to set up an Arch Linux GUI environment on my MacBook Pro in Parallels. I knew virtually nothing about Linux, or operating systems in general for that matter. Every computer I had ever used came with an OS. That was pretty much all I knew about them. It was so ridiculously difficult that I figured other people out there may be struggling with the same problem, and they may benefit from my own experience.

I just followed your 177-step Arch install guide... and I give you praise because it's the only one that worked for me.. but now I think I need to combine tylenol, ibuprofen and a 30 minute break. Mike

Below you'll find a comprehensive, step-by-step guide for exactly how I set up Arch Linux on my MacBook Pro in Parallels. There won't be much in the way of explanation of what any of it means. Just the steps laid out. This is mostly because I don't really know what some of it means. But at the foot of this page you can find some good resources that will tell you what a lot of it means if that interests you. I myself just wanted it up and running, with a GUI, so if you're in those same shoes, just follow this step-by-step, word-for-word, and hopefully it will work for you as well.

Instructions

  1. Download the latest Arch ISO. This guide is based on the following image:
    https://mirror.rackspace.com/archlinux/iso/2020.01.01/
  2. Open Parallels Control Center.
  3. Select File > New.
  4. Choose “Install Windows or another OS from a DVD or image file.”
  5. Continue.
  6. Choose Manually.
  7. Drag the ISO you just downloaded onto the “Drag the image file here” spot. It will say “Unable to detect operating system.”
  8. Continue.
  9. Select “More Linux” > “Other Linux.”
  10. Ok.
  11. Choose a name for your new virtual device, like “Arch.”
  12. Check the “Customize settings before installation” box.
  13. Create.
  14. In the configuration box, select “Options.”
  15. Select “Sharing” in the top menu.
  16. Change “Home folder only” to “All disks.”
  17. Check the “Shared Profile” box.
  18. Select “Hardware” in the top menu.
  19. Move the Memory slider to 4GB.
  20. Close the Configuration window. Can we be rational if there is no God?
    If there is no reason behind your own mental processes, then there is no reason behind your own conclusions. So whose reason is behind your own mental processes?
  21. Continue.
  22. When the VM boot window displays, instead of selecting any of the options, hit the TAB button on your keyboard.
  23. Hit the spacebar once and then type: “cow_spacesize=10G”
  24. Enter.
  25. The command prompt should display. Type in the following (without the hashtag at the front):
    # nano /etc/pacman.d/mirrorlist
  26. Follow the nano editor’s usage directions (which should display at the bottom of the screen) in order to move about five local mirrors (mirrors that are local to your location) to the top of the list. This way, when stuff downloads to your machine, it won't download all the way from the other side of the universe, which would take a really long time. Arrows move your cursor, CTRL-k cuts a line, CTRL-u pastes it. When you’re done, CTRL-x attempts to close the nano editor. Hit SHIFT-Y to say that you would like to save, and ENTER finishes.
  27. Now we're going to partition the hard drive:
    # gdisk /dev/sda
    # p
     
    # n
    [ENTER]
    [ENTER]
    # +1G
    [ENTER]
     
    # n
    [ENTER]
    [ENTER]
    # +5G
    # 8200
     
    # n
    [ENTER]
    [ENTER]
    # +20G
    [ENTER]
     
    # n
    [ENTER]
    [ENTER]
    [ENTER]
    [ENTER]
     
    # w
    # Y
     
    # mkfs -t ext4 /dev/sda1
    # mkfs -t ext4 /dev/sda3
    # mkfs -t ext4 /dev/sda4
     
    # mkswap /dev/sda2
    # swapon /dev/sda2
     
    # mount /dev/sda3 /mnt
    # cd /mnt
    # mkdir boot home
    # mount /dev/sda1 boot
    # mount /dev/sda4 home
     
    # nano /etc/resolv.conf
  28. Add these nameservers to the top of the nameserver list:
    nameserver 8.8.8.8
    nameserver 8.8.4.4
  29. CTRL-x. SHIFT-Y. Enter. Does the Problem of Evil prove that God isn't real?
    The Problem of Evil argument cannot be presented without engaging in some kind of logical fallacy. The Palpatine Theodicy displays one... problem... with the Problem of Evil.
  30. Now look up a thing that we're going to need to reference:
    # ip link
  31. Using the second set of data displayed, find the correct service domain and put it into the following line.
    # sudo systemctl enable dhcpcd@enp0s5.service
    # ping google.com
  32. You should get a response from Google. If you don’t, you can try these three commands:
    # sudo systemctl start dhcpcd
    # sudo systemctl enable dhcpcd
    # sudo dhcpcd
  33. Once you are able to get a response from Google when pinging, continue.
    # pacstrap -i /mnt base base-devel
    # genfstab -p /mnt >> /mnt/etc/fstab
    # more /mnt/etc/fstab
    # pacstrap -i /mnt syslinux gptfdisk linux linux-headers nano networkmanager linux-firmware dhcpcd
    # arch-chroot /mnt
    # nano /etc/locale.conf
  34. Type the following into the nano editor.
    LANG="en_US.UTF-8"
  35. CTRL-x. SHIFT-Y. Enter. Now make sure it knows what language you speak.
    # nano /etc/locale.gen
  36. Uncomment the following lines by removing the hashtags in front of them (because of course you live in the US and speak English):
    #en_US.UTF-8 UTF-8
    #en_US ISO-8859-1
  37. CTRL-x. SHIFT-Y. Enter. Now set your time clock. If you don't live on the US east coast, stop typing after "zoneinfo/" and hit TAB a few times and see what happens:
    # locale-gen
    # ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
    # nano /etc/hostname
  38. Type in the one-word, lowercase name of your VM. It can be absolutely anything you want, but you should probably make it something meaningful. Maybe “archlinux”. I’m going to assume you used “archlinux” and show you how to set up your hosts file if you did. If you didn’t, set up the hosts file with the name you actually used.
  39. CTRL-x. SHIFT-Y. Enter. How could time itself start?
    The Author Analogy easily explains many difficult questions about life, the universe, theology, religion, philosophy, epistemology, and the reality we find ourselves in.
  40. Now change the hosts file.
    # nano /etc/hosts
  41. Type in the following with your VM name to the nano editor.
    127.0.0.1 localhost
    127.0.1.1 archlinux.localdomain archlinux
  42. CTRL-x. SHIFT-Y. Enter. Now update some things and change some stuff:
    # syslinux-install_update -i -a -m
    # cd /boot/syslinux
    # cp /usr/lib/syslinux/bios/menu.c32 .
    # cp /usr/lib/syslinux/bios/vesamenu.c32 .
    # cp /usr/lib/syslinux/bios/chain.c32 .
    # cp /usr/lib/syslinux/bios/hdt.c32 .
    # cp /usr/lib/syslinux/bios/reboot.c32 .
    # cp /usr/lib/syslinux/bios/poweroff.c32 .
    # cp /usr/lib/syslinux/bios/libutil.c32 .
    # cp /usr/lib/syslinux/bios/libcom32.c32 .
    # mkinitcpio -p linux
    # passwd
  43. Type in the new password for the root account (not your regular user account) for the new Arch Linux VM. Then we'll do more cool stuff:
    # exit
    # cd /
    # umount /mnt/boot
    # umount /mnt/home
    # swapoff /dev/sda2
    # umount /mnt
    # sgdisk /dev/sda --attributes=1:set:2
    # reboot
  44. Let the system reboot. When it’s complete, it will ask you to log in. Log in as "root."
    # root
  45. Type in the root password that you created a couple of steps ago. Now update your mirrorlist again:
    # nano /etc/pacman.d/mirrorlist
  46. Move the local mirrors to the top of the list again.
  47. CTRL-x. SHIFT-Y. Enter. Then edit your nameservers again:
    # nano /etc/resolv.conf
  48. Add these nameservers to the top of the nameserver list:
    nameserver 8.8.8.8
    nameserver 8.8.4.4
  49. CTRL-x. SHIFT-Y. Enter. Then look up that thing again:
    # ip link
  50. Using the second set of data displayed from that command above, find the correct service domain and put it into the following line.
    # sudo systemctl enable dhcpcd@enp0s5.service
    # ping google.com
    # dhcpcd
    # ping google.com
    Trouble staying pure online?
    Accountable2You can help you find peace of mind and rebuild trust with detailed, real-time accountability software. Available for Arch Linux as well as other major operating systems.
  51. Hopefully, you’re receiving data from Google. Next, create your own user account. We'll pretend your name is Josh because... why wouldn't it be?
    # useradd --home-dir /home/josh --create-home josh
    # passwd josh
    # nano /etc/sudoers
  52. Once the nano editor opens, find the line that reads:
    root ALL=(ALL) ALL
  53. Under that line, add the following line just like it:
    josh ALL=(ALL) ALL
  54. CTRL-x. SHIFT-Y. Enter. Now do some more stuff:
    # exit
    # ip link show
    # sudo systemctl enable dhcpcd@enp0s5.service
    # sudo nano /etc/resolv.conf.head
  55. Add these nameservers to the empty text file:
    nameserver 8.8.8.8
    nameserver 8.8.4.4
  56. CTRL-x. SHIFT-Y. Enter. Now install a bunch more stuff and then reboot:
    # sudo pacman -S xorg-server xorg-xinit xorg-apps
    # sudo pacman -S xorg-iceauth xorg-sessreg xorg-xcmsdb xorg-xbacklight xorg-xgamma xorg-xhost xorg-xinput xorg-xmodmap xorg-xrandr xorg-xrdb xorg-xrefresh xorg-xset xorg-xsetroot mesa-libgl xterm
    # sudo pacman -S xf86-video-vesa
    # sudo pacman -S xfce4 xfce4-goodies sddm
    # sudo reboot
    # ping google.com
  57. Hopefully, that last ping -- the one after reboot -- just worked right off-the-bat and you're getting data from google.com. Install some more stuff and then test GUI functionality:
    # sudo pacman -S xorg-twm xorg-xclock
    # startx
  58. Here you can see a very simplistic GUI. In the first terminal, type the following:
    # exit
  59. You should be out of the GUI again now. Install some more stuff and restart:
    # sudo pacman -S ttf-liberation noto-fonts ttf-roboto ttf-anonymous-pro
    # sudo pacman -S ttf-hack ttf-inconsolata noto-fonts-emoji powerline-fonts
    # sudo pacman -S adobe-source-code-pro-fonts ttf-fira-mono ttf-fira-code
    # sudo pacman -S ttf-ubuntu-font-family ttf-dejavu ttf-freefont
    # sudo pacman -S ttf-droid terminus-font ttf-font-awesome
    # sudo pacman -S gnome gnome-extra
    # sudo systemctl enable gdm
    # sudo reboot
  60. The new GUI should automatically boot up. This should happen from now on. Open terminal again manually in your GUI. Install some important apps:
    # sudo pacman -S chromium
    # sudo pacman -S firefox
    # sudo pacman -S opera
    # sudo pacman -S flashplugin
    # gsettings set org.gnome.desktop.wm.preferences button-layout ":minimize,maximize,close"
  61. Still in the terminal, clean up some font cache problems:
    # sudo rm /var/cache/fontconfig/*
    # rm ~/.cache/fontconfig/*
  62. Now install Parallels Tools so you can copy between your operating systems and so you can share directories and stuff. Parallels Tools just worked right for me first try, so I will just link to another source for instructions for installing Parallels Tools.
  63. In the future, to run a full system update, do this in the terminal:
    # pacman -Syu

Gilbert Guttlebocker, Defender of Dragons

Gilbert Guttlebocker, Defender of Dragons

Riveting, yet absurd; romantic, yet innocent; Gilbert Guttlebocker, Defender of Dragons is a little Roald Dahl, a little Harry Potter, and a little Chronicles of Narnia, all rolled into one. Timothy McCabe collaborates with the great Benedict Ballyhoot to bring you the novel of the century!

 

World Religions and Cults (volume 2)

In Printed Form

Along with numerous other authors including Don Landis, Bodie Hodge and Roger Patterson, Timothy McCabe contributes analyses of various world religions and cults in this volume from Master Books.

Other Writings

Islam is false: a simple proof

Islam refers to the specific philosophy of the Muslims, a monotheistic and unitarian belief system declared by Muhammad in 610 AD and described in the book known as the Qur'an.
Continue reading...

"Mr. McCabe, you obviously don't read your own Bible. On the first page alone (Genesis) in the Arabic Bibles around the world the word Allah is there 17 times. YHWH was only given in Exodus, there aren't any vowels, so why did you say Yahweh?"

This question appears to be in response to my answer to the question "Aren't Allah, Brahman and Yahweh just different names for the same God?". Thanks for your comments. When I read the question "Aren't Allah, Brahman and Yahweh just different names for the same God?", my understanding was that the questioner was suggesting that it was possible that we all worship the same God, just by different names. The thrust of my argument was that we worship different Gods.
Continue reading...

"In Romans 1:23, God clearly says "you have brought down the image of the uncorruptible God to corruptible man". How then can you call Jesus God?"

This question is a continuation of an earlier question, linked to at the bottom of my answer. The question was asked in several parts, so I have compiled all of the questions together here, and will answer them all at once. In full, the questioner asks: "You mentioned that Jesus has two seperate identities. How? Did not Jesus say that he was 'the son of man'?
Continue reading...

"What's an easy way to demonstrate that polytheism is false?"

If two equally sovereign creator gods disagree on any point, noncontradiction is no longer a valid test of truth. Without noncontradiction, there can be no test of truth at all, and rational thought goes out the window. But the problem is worse than that. Since the gods are equally sovereign, neither is in control of the other one. This means that neither one can guarantee the behavior of the other one.
Continue reading...

"What unique evidence is there for your religion or worldview? Can you prove that what you say is true?"

In the words of the late Greg Bahnsen, the most basic proof of Christianity is that if it were not true, it would be impossible to prove anything at all. If the non-Christian worldview is true, the laws of logic are not valid. Therefore, even though non-Christians use logic to interpret evidence, they have no real justification for doing so. In the non-Christian worldview, logic is not something that can be trusted.
Continue reading...

"Could Christ have prevented his alleged crucifixion? If he could have but didn't, wasn't that suicide?"

"Could Christ have prevented his alleged crucifixion?" Generally, this type of question, "could someone have done other than what they did?" ultimately means, "was there a point at which the singular cause of the event was the will of the person involved?" If I have correctly understood the intent of the questioner, the answer is absolutely (John 10:18). "If he could have but didn't, wasn't that suicide?
Continue reading...

"Should modern mainstream religions be considered cults?"

Modern mainstream religions could be considered "cults", and every form of Atheism could as well. But why should it matter if that particular term can be applied? Why would we want to call every modern mainstream religion a "cult" apart from a desire to provoke some type of defensive emotional reaction from religious persons? And why would anyone be interested in manipulating such a reaction?
Continue reading...

"How did we get here? Where did we all come from?"

The Bible teaches that God, through His Son, Jesus, the Word of God, specially created all things, including humanity (Gen 1, John 1:3). Of humanity, God first created a man, named Adam, and then a woman, whom the man named Eve. God then breathed life into them. They both lived for close to a thousand years, and had numerous children between them, some of whom are also named in scripture (Gen 4:1-2; Gen 4:25; Gen 5:3-4). From these original people, all of us are descended.
Continue reading...

"When did your religion or worldview first begin?"

This question requires a two-pronged answer. When God created man, at the beginning of creation, man recognized God and worshipped Him in the way God ordained. In this sense, the worship of the Christian God and reliance on His grace (which is the essence of Christianity) has been around since the time of the very first man, Adam.
Continue reading...

"Aren't Allah, Brahman and Yahweh just different names for the same God?"

No. Allah is a generic Arabic term for an ultimate creator God, and could be applied by Arabic speaking peoples to any ultimate creator God, whether He be the God of the Sikhs, the Muslims, the Christians, or the Jews; while Yahweh is the personal name of the God of Christians or Jews only (roughly translated "THE EXISTING ONE"); and Brahman is the non-personal God specific to Hinduism and related religions.
Continue reading...

"Does your faith or worldview have a specific stance on abortion? What is it?"

The Bible condemns the killing of human beings (Exodus 20:13; Deuteronomy 5:17; Matthew 5:21; Mark 10:19, etc) when it is done without the express permission or command of God Himself. For example, governments have God's permission to execute murderers and certain other types of criminals (Genesis 9:6; Numbers 35:17; Leviticus 20:2, 24:14, 24:16; Deuteronomy 13:10; Romans 13:4) and to wage wars against nations under certain circumstances (Numbers 31:7; Joshua 8; 1 Samuel 15:18).
Continue reading...

"Do we have free will? Please explain."

Free-will has been defined in several different ways. Some would say that free-will is "the ability to do what we want to do". Under this definition, it's clear that we do have free-will, as all of us (at least on occasion) do what we want. However, another definition of free-will is "the ability to choose, or to choose otherwise". Free-will by this definition has been the subject of debate for centuries. We should note that the issue is not "can we choose?
Continue reading...

"Is what is morally good commanded by God because it is morally good, or is it morally good because it is commanded by God?"

This question has been around at least since Plato, and is known by the name of the "Euthyphro Dilemma". It's really nothing more than a silly trick question wearing a "deep" philosophical mask. If one were to go with the first option provided, it leads to the conclusion that God is subject to the authority of Objective Morality and is not actually able to do whatever He wants, making Him not really God.
Continue reading...

"How do you explain your god's genocidal bloodlust in Deut 7 1-2?"

Deuteronomy 7:1-2 When the LORD your God brings you into the land where you are entering to possess it, and clears away many nations before you, the Hittites and the Girgashites and the Amorites and the Canaanites and the Perizzites and the Hivites and the Jebusites, seven nations greater and stronger than you, and when the LORD your God delivers them before you and you defeat them, then you shall utterly destroy them. You shall make no covenant with them and show no favor to them.
Continue reading...

"If god is perfect, how did he manage to create imperfection?"

In answer, I will assume this question is referring essentially to sinful humans and fallen angels (or demons). So, rephrased, what I understand this question to be asking is how a perfect God could have created sinful people. Self-described Christians generally offer, to my knowledge, one of three answers to this. 1.
Continue reading...

All articles