Блог сисадмина
-
NTFS partition with windows 7 data recovery in linux - 12-05-2026
When I tried to mount NTFS partition with windows 7 in fedora linux 42, I got the error: "The MFT is not self-contained: No such file or directory Failed to load $MFT: No such file or directory". Here are some ideas how to deal with this problem. This error typically means the NTFS filesystem is […]
The post NTFS partition with windows 7 data recovery in linux first appeared on Блог системного адміністратора.
-
How to control Windows 10 via SSH - 27-04-2026
Download SSH-server from github https://github.com/PowerShell/Win32-OpenSSH/releases/ and install. Start and enable auto-start after booting in powershell console: Start-Service sshd Set-Service -Name sshd -StartupType 'Automatic' Allow incoming connection in Windows Firewall: New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 Enable password-less authentication: Add-Content -Path "C:\ProgramData\ssh\administrators_authorized_keys" -Value "your_public_key_here" icacls […]
The post How to control Windows 10 via SSH first appeared on Блог системного адміністратора.
-
Apache 2.4 doesn't start with AH00023: Couldn't create the rewrite-map mutex - 16-03-2026
Problem: Apache 2.4.6 doesn't start on CentOS 7. error.log shows this confusing error message: [Mon Mar 16 08:55:03.254104 2026] [core:emerg] [pid 3946] (28)No space left on device: AH00023: Couldn't create the rewrite-map mutex [Mon Mar 16 08:55:03.254178 2026] [:emerg] [pid 3946] AH00020: Configuration Failed, exiting We don't have problems with free space on storage device, […]
The post Apache 2.4 doesn't start with AH00023: Couldn't create the rewrite-map mutex first appeared on Блог системного адміністратора.
-
How to fix DNS resolving problem in libvirt guest - 11-06-2025
Situation: dnsmasq is running on host machine and listens on 192.168.122.1:53 (both TCP and UDP), but resolving in guest machine doesn't work. When dig command shows "status: REFUSED" while querying 192.168.122.1 from inside VM like this # dig srv.myex.zone @192.168.122.1 ; <<>> DiG 9.16.23-RH <<>> srv.myex.zone @192.168.122.1 ;; global options: +cmd ;; Got answer: […]
The post How to fix DNS resolving problem in libvirt guest first appeared on Блог системного адміністратора.
-
Проблеми ерозії берегів — причини, наслідки та рішення - 07-05-2025
Ерозія берегів — це повільний, але незворотний процес руйнування берегової лінії під впливом води, вітру, снігу, хвиль і діяльності людини. Вона загрожує як природним ландшафтам, так і інфраструктурі, приватним ділянкам, сільськогосподарським угіддям. Особливо небезпечна ерозія на крутих берегах річок, озер і водосховищ, де втрата ґрунту може призвести до зсувів, затоплення, руйнування будівель і доріг. Щоб […]
The post Проблеми ерозії берегів — причини, наслідки та рішення first appeared on Блог системного адміністратора.
-
fetchmail version 6.4.39 stopped working with Gmail - 02-05-2025
One day I had fetchmail version 6.4.39 stopped working with Gmail saying in log: fetchmail: Authorization failure on [email protected] fetchmail: For help, see http://www.fetchmail.info/fetchmail-FAQ.html#R15 fetchmail: Query status=3 (AUTHFAIL) That FAQ page wasn't very useful - no thoughts for me to dig further. In the ~/.fetchmailrc config file I had this string, which was working fine […]
The post fetchmail version 6.4.39 stopped working with Gmail first appeared on Блог системного адміністратора.
-
Virtualbox virtual machine not started with VERR_VMX_IN_VMX_ROOT_MODE error - 25-04-2025
Also, in VBox.log we have: 00:00:01.479958 vmmR3LogFlusher: Terminating (VERR_OBJECT_DESTROYED) 00:00:01.605332 VMSetError: /home/vbox/tinderbox/build-VBox-7.0/svn/src/VBox/VMM/VMMR3/VM.cpp(341) int VMR3Create(uint32_t, PCVMM2USERMETHODS, uint64_t, PFNVMATERROR, void*, PFNCFGMCONSTRUCTOR, void*, VM**, UVM**); rc=VERR_VMX_IN_VMX_ROOT_MODE 00:00:01.605338 VMSetError: VirtualBox can't operate in VMX root mode. Please disable the KVM kernel extension, recompile your kernel and reboot 00:00:01.605815 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) aIID={6ac83d89-6ee7-4e33-8ae6-b257b2e81be8} aComponent={ConsoleWrap} aText={VirtualBox can't operate in VMX […]
The post Virtualbox virtual machine not started with VERR_VMX_IN_VMX_ROOT_MODE error first appeared on Блог системного адміністратора.
-
Чому пластинчасті теплообмінники є лідерами в енергоефективності - 01-04-2025
Сучасні промислові та комерційні системи опалення, охолодження й утилізації тепла вимагають максимального рівня енергоефективності. Одним із найкращих рішень у цій сфері є пластинчасті теплообмінники, які відзначаються високою продуктивністю, низькими експлуатаційними витратами та можливістю ефективного використання теплової енергії. У цій статті розглянемо ключові фактори, що роблять пластинчасті теплообмінники еталоном енергоефективності (читати джерело). Як пластинчасті теплообмінники зменшують […]
The post Чому пластинчасті теплообмінники є лідерами в енергоефективності first appeared on Блог системного адміністратора.
-
How to prevent libvirt from adding iptables rules for guest NAT networks - 18-02-2025
Libvirt by default adds some firewall rules for NAT to work, but it can be a nightmare if you have our own set of NAT/forward rules - conflicts between them are very likely. To avoid this edit /etc/libvirt/qemu/networks/default.xml and set forward mode to "open" (in my case the value here was "nat"). So, the file […]
The post How to prevent libvirt from adding iptables rules for guest NAT networks first appeared on Блог системного адміністратора.
-
NFS share access problem from a KVM guest - 05-02-2025
Someday I had to increase storage for an app living inside KVM guest. Considering that this KVM server run almost out of free disk space, probably, the easiest way to achieve the goal was to use NFS to utilize the other server's storage. So, after 'yum install nfs-utils' I tried to mount a share and […]
The post NFS share access problem from a KVM guest first appeared on Блог системного адміністратора.
