After updating my system [incl. kernel] I didn’t restart a pc, but run a hibernation [yes, my fault]. The system didn’t start after this,
systemd-journald.service start operation timed out terminating
and
Failed to start Journal Service
I can’t enter TTY [ctrl+alt+F1/2 gives no effect], so I booted from liveusb. After succesfully mounting the partition [it’s encrypted] I can’t chroot into the system:
grub-probe error: cannot find a GRUB drive for /dev/sdb1. Check your device.map
GRUB is on other partition, but it’s mounted and I can see files inside. It’s EFI.
Any ideas for next steps?
You did try to boot at least one time after the failed attempt?
Or did you just go straight to booting the live system?
How did you (attempt to) do that?
With:
manjaro-chroot -a
?
That won’t work with an encrypted system.
You need to mount the partitions in the proper order yourself,
to /mnt
for example,
then chroot by:
manjaro-chroot /mnt
1 Like
mmm:
I can’t enter TTY [ctrl+alt+F1/2 gives no effect], so I booted from liveusb. After succesfully mounting the partition [it’s encrypted] I can’t chroot into the system:
grub-probe error: cannot find a GRUB drive for /dev/sdb1. Check your de
When attempting to chroot please provide all output. Is /dev/sdb1 the expected partition? Please, provide as well output of
sudo fdisk -l
and explain what partitions are of relevance.
1 Like
Thanks for your quick and helpful answer!
You did try to boot at least one time after the failed attempt?
Yes, I tried couple of times.
So I have succesfully chrooted into the system, there’re some broken dependencies related to the package electron30 [I hate this package, always problems, on every update]. How can I ignore those from here? I am using:
pamac upgrade && pamac upgrade --aur --devel || echo -e
mmm:
electron30
This is from AUR. Uninstall it, update normal repos by
sudo pacman -Syu
and then rebuilt it.
5 Likes
Don’t put it one ignore - it will keep being a problem.
Fix it properly - uninstall it and use a repo version if possible - or uninstall, update the base system and then tend to whatever AUR packages.
2 Likes
updating repos works but when it comes to actually upgrading:
System has not been booted with systemd as init system (PID 1) can't operate.
Failed to connect to system scope bus via local transport: Host is down
Had to unmount and close luks partition with cryptsetup first, then open again from terminal with cryptsetup and mount.
Too vague.
But that’s fine when you know what you are doing.
I asked again because I have never seen this (error) message in a chroot scenario.
1 Like
Still vague, but it doesn’t look right from what you described.
First mount /
(the encrypted system root) - then /boot
onto it, if it is separate.
Else you’ll end up with /
“blocking” your /boot
… (if you first mount /boot
, then /
onto/over it)
… but that kind of layout isn’t standard
lsblk -f
before and after the mount steps is what I do to identify the partitions and make sure I mount in the correct spot and order.
1 Like
mmm
1 April 2025 10:42
13
sda 8:0 0 476.9G 0 disk
├─sda1 8:1 0 250G 0 part
│ └─623ea5ad-e9b5-48cc-af3c-a72c069db48b 254:0 0 250G 0 crypt /mnt/root
├─sda2 8:2 0 256M 0 part /mnt/boot
├─sda3 8:3 0 148.1G 0 part
└─sda4 8:4 0 24G 0 part
So first I will mount sda1 as /mnt/root and then sda2 as /mnt/root/boot, right?
Please provide system information as described below.
System Information
Output of this command (formatted according to forum requirements) may be useful for those wishing to help:
inxi --filter --verbosity=8
or the short form:
inxi -zv8
Be prepared to provide more information and outputs from other commands whenever asked. It’s equally important to provide as much actionable information as possible in your first post, rather than simply indicating there is a problem.
…and…
Welcome to the Manjaro community
As a new or infrequent forum user, please take some time to familiarise yourself with Forum requirements, and the many ways to use the forum to your benefit:
Update Announcements
The Update Announcements contain important information and a Known Issues and Solutions section that should generally be checked before posting a request for support.
Required reading
Resources
I believe you may benefit from
Purpose
It is not intended as a one-stop-solution guide.
The intention is To Provide A Basic Understanding of the steps required to succesfully recover when an incident has prevented the operating system from loading.
Requirements
Basic understanding of using a console or virtual terminal to execute commands.
Ability to edit configuration files using terminal a console editor like nano, micro or vi(m).
You are willing to learn
The knowledge gained and skills acquired will be applicable - n…
1 Like
Basically: Yes
But why so complicated?
lsblk -f
is more transparent (tells you more, gives more information) than whatever command you used.
From what I know so far:
Mount crypt to /mnt
.
Then mount (sda2) /boot
to /mnt/boot
… if you know that /dev/sda2
holds the contents of /boot
It is not a layout produced by a standard installation - this has got an unencrypted EFI partition and this needs to be mounted to /boot/efi
You can check /etc/fstab
in the decrypted partition once you mounted it.
Here as an example the process on my system - it is a VM
lsblk -f ✔
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINTS
loop0 squashfs 4.0 0 100% /run/miso/sfs/livefs
loop1 squashfs 4.0 0 100% /run/miso/sfs/mhwdfs
loop2 squashfs 4.0 0 100% /run/miso/sfs/desktopfs
loop3 squashfs 4.0 0 100% /run/miso/sfs/rootfs
sr0 iso9660 Joliet Extension MANJARO_XFCE_2421 2024-12-16-11-22-45-00 0 100% /run/miso/bootmnt
vda
├─vda1 vfat FAT32 2630-51D3
└─vda2 crypto_LUKS 1 2aefff29-916e-47fe-959e-2213881b5487
vdb
└─vdb1 ext4 1.0 pacmancache 98195df8-0bc0-4b79-abb7-8ea21d40999f
sudo cryptsetup open /dev/vda2 crypt ✔
Geben Sie die Passphrase für »/dev/vda2« ein:
sudo mount /dev/mapper/crypt /mnt
cat /mnt/etc/fstab ✔
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=2630-51D3 /boot/efi vfat defaults,umask=0077 0 2
/dev/mapper/luks-2aefff29-916e-47fe-959e-2213881b5487 / ext4 defaults 0 1
UUID=98195df8-0bc0-4b79-abb7-8ea21d40999f /var/cache/pacman/pkg ext4 defaults 0 1
note this line:
UUID=2630-51D3 /boot/efi vfat defaults,umask=0077 0 2
sudo mount /dev/vda1 /mnt/boot/efi
manjaro-chroot /mnt /bin/bash
→ I’m in chroot
2 Likes
mmm
1 April 2025 12:03
17
OK, thanks for your help. It always amazes me how great is Linux community
So:
The sda2 was indeed to be mounted as /boot/efi, thanks for advice to check fstab. I’m not familiar with this efi-related layout…
I have found another alien package - fsearch - thanks for the tutorial telling me how to identify those
Now I’m having upgrade run successfully, I’ll edit this message if it’ll help
mmm
1 April 2025 12:54
18
Unfortunately an update of the system didn’t resolve the problem yet:
dev-sdb1.device: Job dev-sdb1.device/start timed out.
Timed out waiting for device dev/sdb1
Dependency failed for media/m
and
systemd-journal.service: start operation timed out. Terminating
systemd-journal.service: State 'stop-sigterm' timed out. Killing
We don’t know what /dev/sdb1
is or whether it is in /etc/fstab.
Apparently it is mentioned somewhere.
… still no system information to go off of …
inxi -zv8
contents of /etc/fstab
could help to shed light …
Perhaps it is in /etc/fstab
, but not physically present? Who knows …
mmm
1 April 2025 13:15
20
Sorry, couldn’t run web browser from liveusb nor copy the output, here’s fstab:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=24C7-868A /boot/efi vfat umask=0077 0 2
/dev/mapper/luks-1fe07266-2764-41a7-87ee-771dea9e8e02 / ext4 noatime 0 1
UUID=15f54ad7-083d-45c2-bbd4-5f5bd715aa3e swap swap noatime 0 0
tmpfs /tmp tmpfs noatime,mode=1777 0 0
/dev/sdb1 /media/m ntfs nofail 0 0
inxi:
System:
Kernel: 6.12.4-1-MANJARO arch: x86_64 bits: 64 compiler: gcc v: 14.2.1
clocksource: tsc avail: hpet,acpi_pm
parameters: BOOT_IMAGE=/boot/vmlinuz-x86_64 lang=en_US keytable=us tz=UTC
misobasedir=manjaro misolabel=MANJARO_KDEM_2421 quiet
systemd.show_status=1 splash driver=free nouveau.modeset=1 i915.modeset=1
radeon.modeset=1
Desktop: KDE Plasma v: 6.2.4 tk: Qt v: N/A info: frameworks v: 6.8.0
wm: kwin_x11 vt: 2 dm: SDDM Distro: Manjaro base: Arch Linux
Machine:
Type: Laptop System: Dell product: Latitude E5470 v: N/A
serial: <superuser required> Chassis: type: 9 serial: <superuser required>
Mobo: Dell model: 03MT0C v: A00 serial: <superuser required> part-nu: 06DE
uuid: <superuser required> UEFI-[Legacy]: Dell v: 1.21.6 date: 10/02/2019
Battery:
ID-1: BAT0 charge: 44.3 Wh (84.7%) condition: 52.3/62.0 Wh (84.3%)
volts: 8.5 min: 7.6 model: LGC-LGC4.20 DELL HK6DV type: Li-ion
serial: <filter> status: charging
Memory:
System RAM: total: 16 GiB available: 15.31 GiB used: 2.52 GiB (16.4%)
Message: For most reliable report, use superuser + dmidecode.
Array-1: capacity: 32 GiB slots: 2 modules: 1 EC: None
max-module-size: 16 GiB note: est.
Device-1: DIMM A type: DDR4 detail: synchronous size: 16 GiB
speed: 2133 MT/s volts: curr: 1 width (bits): data: 64 total: 64
manufacturer: SK Hynix part-no: HMA82GS6MFR8N-TF serial: <filter>
Device-2: DIMM B type: no module installed
PCI Slots:
Permissions: Unable to run dmidecode. Root privileges required.
CPU:
Info: model: Intel Core i7-6600U bits: 64 type: MT MCP arch: Skylake
gen: core 6 level: v3 note: check built: 2015 process: Intel 14nm family: 6
model-id: 0x4E (78) stepping: 3 microcode: 0xF0
Topology: cpus: 1x dies: 1 clusters: 2 cores: 2 threads: 4 tpc: 2
smt: enabled cache: L1: 128 KiB desc: d-2x32 KiB; i-2x32 KiB L2: 512 KiB
desc: 2x256 KiB L3: 4 MiB desc: 1x4 MiB
Speed (MHz): avg: 500 min/max: 400/3400 scaling: driver: intel_pstate
governor: powersave cores: 1: 500 2: 500 3: 500 4: 500 bogomips: 22408
Flags: 3dnowprefetch abm acpi adx aes aperfmperf apic arat
arch_capabilities arch_perfmon art avx avx2 bmi1 bmi2 bts clflush
clflushopt cmov constant_tsc cpuid cpuid_fault cx16 cx8 de ds_cpl dtes64
dtherm dts epb ept ept_ad erms est f16c flexpriority flush_l1d fma fpu
fsgsbase fxsr ht hwp hwp_act_window hwp_epp hwp_notify ibpb ibrs ida
intel_pt invpcid lahf_lm lm mca mce md_clear mmx monitor movbe mpx msr
mtrr nonstop_tsc nopl nx pae pat pbe pcid pclmulqdq pdcm pdpe1gb pebs pge
pln pni popcnt pse pse36 pti pts rdrand rdseed rdtscp rep_good sdbg sep
sgx smap smep smx ss ssbd sse sse2 sse4_1 sse4_2 ssse3 stibp syscall tm
tm2 tpr_shadow tsc tsc_adjust tsc_deadline_timer vme vmx vnmi vpid x2apic
xgetbv1 xsave xsavec xsaveopt xsaves xtopology xtpr
Vulnerabilities:
Type: gather_data_sampling status: Vulnerable: No microcode
Type: itlb_multihit status: KVM: Split huge pages
Type: l1tf mitigation: PTE Inversion; VMX: conditional cache flushes, SMT
vulnerable
Type: mds mitigation: Clear CPU buffers; SMT vulnerable
Type: meltdown mitigation: PTI
Type: mmio_stale_data mitigation: Clear CPU buffers; SMT vulnerable
Type: reg_file_data_sampling status: Not affected
Type: retbleed mitigation: IBRS
Type: spec_rstack_overflow status: Not affected
Type: spec_store_bypass mitigation: Speculative Store Bypass disabled via
prctl
Type: spectre_v1 mitigation: usercopy/swapgs barriers and __user pointer
sanitization
Type: spectre_v2 mitigation: IBRS; IBPB: conditional; STIBP: conditional;
RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected
Type: srbds mitigation: Microcode
Type: tsx_async_abort mitigation: TSX disabled
Graphics:
Device-1: Intel Skylake GT2 [HD Graphics 520] vendor: Dell driver: i915
v: kernel arch: Gen-9 process: Intel 14n built: 2015-16 ports: active: eDP-1
empty: DP-1,HDMI-A-1,HDMI-A-2 bus-ID: 00:02.0 chip-ID: 8086:1916
class-ID: 0300
Device-2: Advanced Micro Devices [AMD/ATI] Topaz XT [Radeon R7 M260/M265
/ M340/M360 M440/M445 530/535 620/625 Mobile] vendor: Dell driver: N/A
alternate: amdgpu arch: GCN-3 code: Volcanic Islands process: TSMC 28nm
built: 2014-19 pcie: gen: 2 speed: 5 GT/s lanes: 4 link-max: gen: 3
speed: 8 GT/s lanes: 8 bus-ID: 01:00.0 chip-ID: 1002:6900 class-ID: 0380
Device-3: Sunplus Innovation Integrated_Webcam_FHD driver: uvcvideo
type: USB rev: 2.0 speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 1-2:2
chip-ID: 1bcf:2b93 class-ID: 0e02
Display: x11 server: X.Org v: 21.1.14 with: Xwayland v: 24.1.4
compositor: kwin_x11 driver: X: loaded: modesetting alternate: fbdev,vesa
dri: iris gpu: i915 display-ID: :0 screens: 1
Screen-1: 0 s-res: 1920x1080 s-dpi: 96 s-size: 508x285mm (20.00x11.22")
s-diag: 582mm (22.93")
Monitor-1: eDP-1 model: AU Optronics 0x103d built: 2015 res: 1920x1080
hz: 60 dpi: 158 gamma: 1.2 chroma: red: x: 0.643 y: 0.333 green: x: 0.314
y: 0.627 blue: x: 0.157 y: 0.059 white: x: 0.314 y: 0.329
size: 309x173mm (12.17x6.81") diag: 354mm (13.9") ratio: 16:9
modes: 1920x1080
EDID-Warnings: 1: parse_edid: unknown flag 0
API: EGL v: 1.5 hw: drv: intel iris platforms: device: 0 drv: iris
device: 1 drv: swrast gbm: drv: iris surfaceless: drv: iris x11: drv: iris
inactive: wayland
API: OpenGL v: 4.6 compat-v: 4.5 vendor: intel mesa v: 24.2.8-arch1.1
glx-v: 1.4 direct-render: yes renderer: Mesa Intel HD Graphics 520 (SKL GT2)
device-ID: 8086:1916 memory: 7.47 GiB unified: yes
API: Vulkan v: 1.4.303 layers: N/A device: 0 type: integrated-gpu
name: Intel HD Graphics 520 (SKL GT2) driver: N/A device-ID: 8086:1916
surfaces: xcb,xlib
Audio:
Device-1: Intel Sunrise Point-LP HD Audio vendor: Dell driver: snd_hda_intel
v: kernel alternate: snd_soc_avs bus-ID: 00:1f.3 chip-ID: 8086:9d70
class-ID: 0403
API: ALSA v: k6.12.4-1-MANJARO status: kernel-api with: aoss
type: oss-emulator tools: alsactl,alsamixer,amixer
Server-1: JACK v: 1.9.22 status: off tools: N/A
Server-2: PipeWire v: 1.2.7 status: active with: 1: pipewire-pulse
status: active 2: wireplumber status: active 3: pipewire-alsa type: plugin
tools: pactl,pw-cat,pw-cli,wpctl
Network:
Device-1: Intel Ethernet I219-LM vendor: Dell driver: e1000e v: kernel
port: N/A bus-ID: 00:1f.6 chip-ID: 8086:156f class-ID: 0200
IF: enp0s31f6 state: up speed: 100 Mbps duplex: full mac: <filter>
IP v4: <filter> type: dynamic noprefixroute scope: global
broadcast: <filter>
IP v6: <filter> type: noprefixroute scope: link
Device-2: Intel Wireless 8260 driver: iwlwifi v: kernel pcie: gen: 1
speed: 2.5 GT/s lanes: 1 bus-ID: 02:00.0 chip-ID: 8086:24f3 class-ID: 0280
IF: wlp2s0 state: down mac: <filter>
IF-ID-1: wwp0s20f0u2i12 state: down mac: <filter>
Info: services: NetworkManager, systemd-timesyncd, wpa_supplicant
WAN IP: <filter>
Bluetooth:
Device-1: Intel Bluetooth wireless interface driver: btusb v: 0.8 type: USB
rev: 2.0 speed: 12 Mb/s lanes: 1 mode: 1.1 bus-ID: 1-8:8 chip-ID: 8087:0a2b
class-ID: e001
Report: rfkill ID: hci0 rfk-id: 0 state: up address: see --recommends
Logical:
Message: No logical block device data found.
RAID:
Message: No RAID data found.
Drives:
Local Storage: total: 480.69 GiB used: 0 KiB (0.0%)
SMART Message: Unable to run smartctl. Root privileges required.
ID-1: /dev/sda maj-min: 8:0 vendor: Samsung model: MZNLN512HMJP-000L7
size: 476.94 GiB block-size: physical: 512 B logical: 512 B speed: 6.0 Gb/s
tech: SSD serial: <filter> fw-rev: 1L6Q scheme: MBR
ID-2: /dev/sdb maj-min: 8:16 model: General size: 3.75 GiB block-size:
physical: 512 B logical: 512 B type: USB rev: 2.0 spd: 480 Mb/s lanes: 1
mode: 2.0 tech: N/A serial: <filter> fw-rev: 5.00 scheme: MBR
SMART Message: Unknown USB bridge. Flash drive/Unsupported enclosure?
Message: No optical or floppy data found.
Partition:
Message: No partition data found.
Swap:
Alert: No swap data was found.
Unmounted:
ID-1: /dev/sda2 maj-min: 8:2 size: 256 MiB fs: vfat label: N/A
uuid: 24C7-868A
ID-2: /dev/sda3 maj-min: 8:3 size: 148.1 GiB fs: ntfs label: win
uuid: 48640FA16A1A063F
ID-3: /dev/sda4 maj-min: 8:4 size: 24 GiB fs: swap label: N/A
uuid: 15f54ad7-083d-45c2-bbd4-5f5bd715aa3e
ID-4: /dev/sdb1 maj-min: 8:17 size: 3.37 GiB fs: iso9660
ID-5: /dev/sdb2 maj-min: 8:18 size: 4 MiB fs: vfat label: MISO_EFI
uuid: 9600-2AFB
USB:
Hub-1: 1-0:1 info: hi-speed hub with single TT ports: 12 rev: 2.0
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
class-ID: 0900
Device-1: 1-1:9 info: Areson Corp Elecom MR-K013 Multicard Reader
type: keyboard,mouse driver: hid-generic,usbhid interfaces: 2 rev: 1.1
speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 100mA
chip-ID: 25a7:fa61 class-ID: 0301
Device-2: 1-2:2 info: Sunplus Innovation Integrated_Webcam_FHD type: video
driver: uvcvideo interfaces: 2 rev: 2.0 speed: 480 Mb/s (57.2 MiB/s)
lanes: 1 mode: 2.0 power: 500mA chip-ID: 1bcf:2b93 class-ID: 0e02
Device-3: 1-3:3 info: LogiLink UDisk flash drive type: mass storage
driver: usb-storage interfaces: 1 rev: 2.0 speed: 480 Mb/s (57.2 MiB/s)
lanes: 1 mode: 2.0 power: 100mA chip-ID: abcd:1234 class-ID: 0806
serial: <filter>
Hub-2: 1-4:4 info: Dell internal USB Hub of E-Port Replicator ports: 3
rev: 2.0 speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 2mA
chip-ID: 413c:2513 class-ID: 0900
Device-1: 1-5:5 info: Elan Micro Touchscreen type: HID
driver: hid-multitouch,usbhid interfaces: 1 rev: 2.0
speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 100mA
chip-ID: 04f3:20ba class-ID: 0300
Hub-3: 1-6:6 info: Dell internal USB Hub of E-Port Replicator ports: 3
rev: 2.0 speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 2mA
chip-ID: 413c:2513 class-ID: 0900
Device-1: 1-7:7 info: Broadcom 5880 type: smart card driver: N/A
interfaces: 4 rev: 1.1 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1
power: 100mA chip-ID: 0a5c:5834 class-ID: 0b00 serial: <filter>
Device-2: 1-8:8 info: Intel Bluetooth wireless interface type: bluetooth
driver: btusb interfaces: 2 rev: 2.0 speed: 12 Mb/s (1.4 MiB/s) lanes: 1
mode: 1.1 power: 100mA chip-ID: 8087:0a2b class-ID: e001
Hub-4: 2-0:1 info: super-speed hub ports: 6 rev: 3.0
speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 1d6b:0003
class-ID: 0900
Device-1: 2-2:2 info: Dell DW5811e Snapdragon™ X7 LTE
type: communication,CDC-data driver: cdc_mbim interfaces: 2 rev: 3.0
speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 power: 504mA
chip-ID: 413c:81b6 class-ID: 0a00 serial: <filter>
Sensors:
System Temperatures: cpu: 57.0 C pch: 50.5 C mobo: 45.0 C
Fan Speeds (rpm): cpu: 0
Repos:
Packages: pm: pacman pkgs: 1172 libs: 316 tools: pamac
Active pacman repo servers in: /etc/pacman.d/mirrorlist
1: https://mirrors.ft.uam.es/manjaro/stable/$repo/$arch
2: https://manjaro.mirror.liquidtelecom.com/stable/$repo/$arch
3: https://mirror.raiolanetworks.com/manjaro/stable/$repo/$arch
4: https://ftp.halifax.rwth-aachen.de/manjaro/stable/$repo/$arch
5: https://mirrors.up.pt/pub/manjaro/stable/$repo/$arch
6: https://mirror.bardia.tech/manjaro/stable/$repo/$arch
7: https://mirror.bouwhuis.network/manjaro/stable/$repo/$arch
8: https://mirror.2degrees.nz/manjaro/stable/$repo/$arch
9: https://mirrors.ocf.berkeley.edu/manjaro/stable/$repo/$arch
10: https://mirrors2.manjaro.org/stable/$repo/$arch
11: http://ftp.dei.uc.pt/pub/linux/manjaro/stable/$repo/$arch
12: https://mirror.zetup.net/manjaro/stable/$repo/$arch
13: http://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/$repo/$arch
14: https://ftp.cc.uoc.gr/mirrors/linux/manjaro/stable/$repo/$arch
15: https://mirror.aarnet.edu.au/pub/manjaro/stable/$repo/$arch
16: https://manjarolinux-mirror.cloud.mu/stable/$repo/$arch
17: http://ftp.free.org/mirrors/repo.manjaro.org/repos/stable/$repo/$arch
18: http://mirror.datacenter.by/pub/mirrors/manjaro/stable/$repo/$arch
19: https://mirror.nyist.edu.cn/manjaro/stable/$repo/$arch
20: https://manjaro.mirror.wearetriple.com/stable/$repo/$arch
21: https://mirror.it4i.cz/manjaro/stable/$repo/$arch
22: https://mirror.telepoint.bg/manjaro/stable/$repo/$arch
23: https://mirrors.sjtug.sjtu.edu.cn/manjaro/stable/$repo/$arch
24: https://mirror.netcologne.de/manjaro/stable/$repo/$arch
25: http://ossmirror.mycloud.services/os/linux/manjaro/stable/$repo/$arch
26: https://ftp.gwdg.de/pub/linux/manjaro/stable/$repo/$arch
27: https://mirror.kamtv.ru/manjaro/stable/$repo/$arch
28: https://nocix.mm.fcix.net/manjaro/stable/$repo/$arch
29: https://mirror.alwyzon.net/manjaro/stable/$repo/$arch
30: https://manjaro.repo.cure.edu.uy/stable/$repo/$arch
31: https://mirrors.atlas.net.co/manjaro/stable/$repo/$arch
32: https://ask4.mm.fcix.net/manjaro/stable/$repo/$arch
33: https://mirrors.netix.net/manjaro/stable/$repo/$arch
34: https://mirrors.aliyun.com/manjaro/stable/$repo/$arch
35: http://free.nchc.org.tw/manjaro/stable/$repo/$arch
36: https://mirror.alpix.eu/manjaro/stable/$repo/$arch
37: https://irltoolkit.mm.fcix.net/manjaro/stable/$repo/$arch
38: https://mirror.vinehost.net/manjaro/stable/$repo/$arch
39: https://mirrors.ucr.ac.cr/manjaro/stable/$repo/$arch
40: https://mirrors.tuna.tsinghua.edu.cn/manjaro/stable/$repo/$arch
41: http://manjaro.mirrors.uk2.net/stable/$repo/$arch
42: https://muug.ca/mirror/manjaro/stable/$repo/$arch
43: https://mirror.truenetwork.ru/manjaro/stable/$repo/$arch
44: https://www.mirrorservice.org/sites/repo.manjaro.org/repos/stable/$repo/$arch
45: https://opencolo.mm.fcix.net/manjaro/stable/$repo/$arch
46: https://mirror.koddos.net/manjaro/stable/$repo/$arch
47: https://mirror.yandex.ru/mirrors/manjaro/stable/$repo/$arch
48: https://mirror.easyname.at/manjaro/stable/$repo/$arch
49: https://mirror1.sox.rs/manjaro/stable/$repo/$arch
50: http://ftp.tu-chemnitz.de/pub/linux/manjaro/stable/$repo/$arch
51: https://ridgewireless.mm.fcix.net/manjaro/stable/$repo/$arch
52: https://mirrors.nic.cz/manjaro/stable/$repo/$arch
53: https://mirror.freedif.org/Manjaro/stable/$repo/$arch
54: https://repo.ialab.dsu.edu/manjaro/stable/$repo/$arch
55: https://mirror.albony.xyz/manjaro/stable/$repo/$arch
56: http://kartolo.sby.datautama.net.id/manjaro/stable/$repo/$arch
57: https://mirror.funami.tech/manjaro/stable/$repo/$arch
58: https://manjaro.mirror.garr.it/manjaro/stable/$repo/$arch
59: https://ftpmirror1.infania.net/mirror/manjaro/stable/$repo/$arch
60: https://codingflyboy.mm.fcix.net/manjaro/stable/$repo/$arch
61: https://mnvoip.mm.fcix.net/manjaro/stable/$repo/$arch
62: https://mirror.math.princeton.edu/pub/manjaro/stable/$repo/$arch
63: https://ziply.mm.fcix.net/manjaro/stable/$repo/$arch
64: https://mirror.23m.com/manjaro/stable/$repo/$arch
65: https://mirror.futureweb.be/manjaro/stable/$repo/$arch
66: https://manjaro.mirrors.lavatech.top/stable/$repo/$arch
67: https://fastmirror.pp.ua/manjaro/stable/$repo/$arch
68: https://mirror.ufro.cl/manjaro/stable/$repo/$arch
69: https://mirrors.dotsrc.org/manjaro/stable/$repo/$arch
70: https://ftp.caliu.cat/pub/distribucions/manjaro/stable/$repo/$arch
71: https://cofractal-ewr.mm.fcix.net/manjaro/stable/$repo/$arch
72: https://ohioix.mm.fcix.net/manjaro/stable/$repo/$arch
73: https://mirrors.cicku.me/manjaro/stable/$repo/$arch
74: http://mirror.fcix.net/manjaro/stable/$repo/$arch
75: http://ftp.snt.utwente.nl/pub/linux/manjaro/stable/$repo/$arch
76: https://forksystems.mm.fcix.net/manjaro/stable/$repo/$arch
77: https://quantum-mirror.hu/mirrors/pub/manjaro/stable/$repo/$arch
78: http://ftp.tsukuba.wide.ad.jp/Linux/manjaro/stable/$repo/$arch
79: http://mirror.terrahost.no/linux/manjaro/stable/$repo/$arch
80: http://ftp.riken.jp/Linux/manjaro/stable/$repo/$arch
81: https://manjaro.ynh.ovh/stable/$repo/$arch
82: https://mirrors.xtom.ee/manjaro/stable/$repo/$arch
83: https://gsl-syd.mm.fcix.net/manjaro/stable/$repo/$arch
84: https://ftp.psnc.pl/linux/manjaro/stable/$repo/$arch
85: https://nnenix.mm.fcix.net/manjaro/stable/$repo/$arch
86: https://volico.mm.fcix.net/manjaro/stable/$repo/$arch
87: http://ftp.uni-kl.de/pub/linux/manjaro/stable/$repo/$arch
88: https://mirrors.ustc.edu.cn/manjaro/stable/$repo/$arch
89: https://mirror.seahost.de/manjaro/stable/$repo/$arch
90: https://uvermont.mm.fcix.net/manjaro/stable/$repo/$arch
91: https://fosszone.csd.auth.gr/manjaro/stable/$repo/$arch
92: https://mirrors.piconets.webwerks.in/manjaro-mirror/stable/$repo/$arch
93: https://mirror.dc.uz/manjaro/stable/$repo/$arch
94: https://mirror.leitecastro.com/manjaro/stable/$repo/$arch
95: https://linorg.usp.br/manjaro/stable/$repo/$arch
96: https://manjaro.c3sl.ufpr.br/stable/$repo/$arch
97: https://mirrors.jlu.edu.cn/manjaro/stable/$repo/$arch
98: https://ftp.linux.org.tr/manjaro/stable/$repo/$arch
99: https://ba.mirror.garr.it/mirrors/manjaro/stable/$repo/$arch
100: https://ipng.mm.fcix.net/manjaro/stable/$repo/$arch
101: https://mirrors.manjaro.org/repo/stable/$repo/$arch
102: https://mirrors.xtom.de/manjaro/stable/$repo/$arch
103: https://coresite.mm.fcix.net/manjaro/stable/$repo/$arch
104: https://mirrors.gigenet.com/manjaro/stable/$repo/$arch
105: https://repos.silknet.com/manjaro/stable/$repo/$arch
106: https://mirror.csclub.uwaterloo.ca/manjaro/stable/$repo/$arch
107: https://mirrors.pku.edu.cn/manjaro/stable/$repo/$arch
108: https://mirror.kku.ac.th/manjaro/stable/$repo/$arch
109: https://mirror.xenyth.net/manjaro/stable/$repo/$arch
110: https://edgeuno-bog2.mm.fcix.net/manjaro/stable/$repo/$arch
111: https://ct.mirror.garr.it/mirrors/manjaro/stable/$repo/$arch
112: https://repo.iut.ac.ir/repo/manjaro/stable/$repo/$arch
113: https://mirrors.xtom.jp/manjaro/stable/$repo/$arch
114: https://mirror.nju.edu.cn/manjaro/stable/$repo/$arch
115: http://manjaro.mirror.ac.za/stable/$repo/$arch
116: https://mirror.ufam.edu.br/manjaro/stable/$repo/$arch
117: https://mirror.archlinux.tw/Manjaro/stable/$repo/$arch
118: https://mirror.init7.net/manjaro/stable/$repo/$arch
119: https://manjaro.kurdy.org/stable/$repo/$arch
120: http://mirror.xeonbd.com/manjaro/stable/$repo/$arch
121: https://mirror.phoepsilonix.love/manjaro/stable/$repo/$arch
122: https://mirror.ibakerserver.pt/manjaro/stable/$repo/$arch
123: https://manjaro.ipacct.com/manjaro/stable/$repo/$arch
124: http://ftp.belnet.be/mirrors/manjaro/repos/stable/$repo/$arch
125: https://southfront.mm.fcix.net/manjaro/stable/$repo/$arch
126: https://mirrors.sonic.net/manjaro/stable/$repo/$arch
127: https://bd.mirror.vanehost.com/Manjaro/stable/$repo/$arch
128: https://ftp.nluug.nl/pub/os/Linux/distr/manjaro/stable/$repo/$arch
129: http://manjaro.grena.ge/stable/$repo/$arch
130: https://ftp.lysator.liu.se/pub/manjaro/stable/$repo/$arch
131: http://mirror.is.co.za/mirrors/manjaro.org/stable/$repo/$arch
132: https://mirror.dkm.cz/manjaro/stable/$repo/$arch
Processes:
CPU top: 5 of 211
1: cpu: 100% command: ps pid: 2598 mem: 3.26 MiB (0.0%)
2: cpu: 64.5% command: firefox pid: 1999 mem: 436.3 MiB (2.7%)
3: cpu: 18.2% command: firefox pid: 2322 mem: 264.0 MiB (1.6%)
4: cpu: 9.2% command: firefox pid: 2361 mem: 185.0 MiB (1.1%)
5: cpu: 8.9% command: kwin_x11 pid: 1213 mem: 167.7 MiB (1.0%)
Memory top: 5 of 211
1: mem: 436.3 MiB (2.7%) command: firefox pid: 1999 cpu: 64.5%
2: mem: 277.7 MiB (1.7%) command: plasmashell pid: 1270 cpu: 5.4%
3: mem: 264.0 MiB (1.6%) command: firefox pid: 2322 cpu: 18.2%
4: mem: 185.0 MiB (1.1%) command: firefox pid: 2361 cpu: 9.2%
5: mem: 167.7 MiB (1.0%) command: kwin_x11 pid: 1213 cpu: 8.9%
Info:
Processes: 211 Power: uptime: 3m states: freeze,mem,disk suspend: deep
avail: s2idle wakeups: 0 hibernate: platform avail: shutdown, reboot,
suspend, test_resume image: 6.08 GiB services: org_kde_powerdevil,
power-profiles-daemon, upowerd Init: systemd v: 256 default: graphical
tool: systemctl
Compilers: N/A Shell: Zsh v: 5.9 running-in: konsole inxi: 3.3.36