Tuesday, October 3, 2023

Artix Linux Firefox install

Did anyone can install anydesk application on Arch Linux or Artix ?


sudo pacman -Sy

sudo pacman -S artix-archlinux-support

sudo pacman-key --populate archlinux

sudo pacman -S firefox




check your /etc/pacman.conf and add archlinux repos, which you want,...

sudo nano /etc/pacman.conf 

Add lines in file:
#
# ARCHLINUX
#

#[testing]
#Include = /etc/pacman.d/mirrorlist-arch

[extra]
Include = /etc/pacman.d/mirrorlist-arch

#[community-testing]
#Include = /etc/pacman.d/mirrorlist-arch

[community]
Include = /etc/pacman.d/mirrorlist-arch

#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist-arch

#[multilib]
#Include = /etc/pacman.d/mirrorlist-arch



Anydesk working like a charm on PeppermintOS.



How to restore Windows bootloader after wrong "alongside dualboot" Linux installing, but keep Linux grub too:


$

sudo apt install os-prober

sudo os-prober /dev/sda1:Windows 10:Windows:chain


sudo nano /etc/default/grub

add following line:
GRUB_DISABLE_OS_PROBER=false

sudo update-grub
sudo reboot -f



Discover the UUID of the partition containing the Windows boot loader by executing the following command in terminal as root:

blkid /dev/sda1

The output will be something like this:

/dev/sda1: LABEL="System Reserved" UUID="1D584C40586B2873" TYPE="ntfs" PARTUUID="adc19fb9-33"

Use the UUID value to create a custom menu entry at the end of the /etc/grub.d/40_custom file:

menuentry "Windows 10" --class windows --class os {
   insmod ntfs
   search --no-floppy --set=root --fs-uuid 1D584C40586B2873
   ntldr /bootmgr
}

Update grub by executing the following command in terminal as root:

update-grub


No comments:

Post a Comment

Коментар: