diff --git a/ChangeLog b/ChangeLog
index 2157afb467e623fa12834c4511513f2c6850d60a..87bf36bd00907b7497ab48c57ac612e45e531379 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -37,6 +37,8 @@ version 0.9.9 -- UNRELEASED
 	 . Do arithmetic using bash rather than bc (Closes: #603173)
 	sys:
 	 . Fix hwinfo (Closes: #625501)
+	 . Fix gathering of information about loaded modules:
+	   cut is in /usr/bin actually.
 	tar:
 	 . Install by default. (Closes Redmine bug #2907)
     helper changes
diff --git a/handlers/sys.in b/handlers/sys.in
index 12d8f594652601cbc719da60e6008f180017e46e..74133a3765ebd242cc4628f415ad5b4cb1b0da03 100755
--- a/handlers/sys.in
+++ b/handlers/sys.in
@@ -350,7 +350,7 @@ STATUS="Getting kernel version:"
 catifexec "/bin/uname" "-a"
 STATUS="Checking module information:"
 catifexec "/sbin/lsmod"
-for x  in $(/sbin/lsmod | /bin/cut -f1 -d" " 2>/dev/null | /bin/grep -v Module 2>/dev/null
+for x  in $(/sbin/lsmod | /usr/bin/cut -f1 -d" " 2>/dev/null | /bin/grep -v Module 2>/dev/null
 ) ; do
    STATUS="Checking module information $x:"
    catifexec "/sbin/modinfo" "$x"