Thanks, I would try itNope. Not the base system at least. Try with something like:
pkg query -e '%a = 0' %o > ~/installedpkgslist
from the console as root will make a list of your installed packages. Then remove all installed packages with
pkg delete -aFy
then reinstall everything with
pkg install `cat ~/installedpkglist`
The command "pkg query -e '%a = 0' %o > ~/installedpkgslist" gives an error, I have replaced with "pkg query -a '%a=0' %o > ~/installedpkgslist".Nope. Not the base system at least. Try with something like:
pkg query -e '%a = 0' %o > ~/installedpkgslist
from the console as root will make a list of your installed packages. Then remove all installed packages with
pkg delete -aFy
then reinstall everything with
pkg install `cat ~/installedpkglist`
That is why i suggest using -e instead of -a so the list contains only the packages installed by the user, and not all libs and dependencies and so on.The command "pkg query -e '%a = 0' %o > ~/installedpkgslist" gives an error, I have replaced with "pkg query -a '%a=0' %o > ~/installedpkgslist".
Then installedpkglist shows a large list like 1=1, 1=1, 0=1,... and so on.
Actually my idea is to get mouse working in pure mode text like old releases, 12.0 to 12.4 in example. No problem there when running the O.S., immediately appears mouse pointer after login in, pure mode text, no GUI.
But since 13.0 mouse does not appears in console's pure mode text. I have installed minimal 13.0-RELEASE without GUI and mouse does not appear in console after login. Always I have moused-enable=YES in rc.conf, but such a sentence is not the actual problem.
The image below shows mouse working in 12.1-12.2-RELEASE, but in 14.0-14-2 mouse just does not work in pure mode text. That's the reason I have tried to upgrade from 12.4 to 14.0. Inspecting dmesg after pkg-static upgrade -f appears some errors like I post below
Running a "VMWared" machine. I do not know what images I have put were.That is why i suggest using -e instead of -a so the list contains only the packages installed by the user, and not all libs and dependencies and so on.
Are you running in a VM or on real hardware. If on real hardware the errors does not mean anything as they are about memory management in a VM.
Does startx work now ??
Here the images, console is inside a virtual machine, 12.1-12.2 Release, mouse works perfectly, buy something is wrong when updating/upgrading from 12.2 or 12.4 to 14.0, look the image below, seldom kernel errors appear.The command "pkg query -e '%a = 0' %o > ~/installedpkgslist" gives an error, I have replaced with "pkg query -a '%a=0' %o > ~/installedpkgslist".
Then installedpkglist shows a large list like 1=1, 1=1, 0=1,... and so on.
Actually my idea is to get mouse working in pure mode text like old releases, 12.0 to 12.4 in example. No problem there when running the O.S., immediately appears mouse pointer after login in, pure mode text, no GUI.
But since 13.0 mouse does not appears in console's pure mode text. I have installed minimal 13.0-RELEASE without GUI and mouse does not appear in console after login. Always I have moused-enable=YES in rc.conf, but such a sentence is not the actual problem.
The image below shows mouse working in 12.1-12.2-RELEASE, but in 14.0-14-2 mouse just does not work in pure mode text. That's the reason I have tried to upgrade from 12.4 to 14.0. Inspecting dmesg after pkg-static upgrade -f appears some errors like I post below
View attachment 22278
Does your loader.conf contain ums_load=“YES””Here the images, console is inside a virtual machine, 12.1-12.2 Release, mouse works perfectly, buy something is wrong when updating/upgrading from 12.2 or 12.4 to 14.0, look the image below, seldom kernel errors appear.
Well, I have a 14.0-RELEASE working, it was upgrades step-by-step from 12.2-RELEASE, some problems in the middle but nothing very important.Does your loader.conf contain ums_load=“YES””
Found this link https://www.reddit.com/r/freebsd/comments/18xe5ax/help_needed_running_freebsd_14_on_vmware_fusion/ Might be your issue
Know VM-Ware quite well. But only for windoze
Is your machines firmware BIOS (to check:Fotget service moused start or something like that, it does not work, it is enabled by default in /etc/rc.conf.
sysctl machdep.bootmethod
)? I've noticed (in a VirtualBox VM) moused has no effect when the machine is BIOS configured.Running that command gives: machdep.bootmethod=BIOSIs your machines firmware BIOS (to check:sysctl machdep.bootmethod
)? I've noticed (in a VirtualBox VM) moused has no effect when the machine is BIOS configured.
With EFI firmware setting, moused works nicely (copy, paste). Same on bare metal machine (laptop), UEFI.
Not necessarily.Then I see there is no solution at all
Well, there are considerable major and minor version gaps between those and the current 14.2. There happened a lot of changes in the source code since then.But in older releases mouse works perfectly, like 12.0-12.1-12.2...
# service moused onestop
# moused -d -f -p /dev/psm0
sysctl kern.vty
). To try, "Escape to loader prompt" at the boot menu, set kern.vty=sc
(permanent set in /boot/loader.conf). See image [2].DEPRECATION NOTICE
The syscons console is deprecated, and will be removed in a future
version of FreeBSD. Users are advised to migrate to the vt(4) console
instead.
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk
index 22373f8c7af1..774b6fffd3df 100644
--- a/share/mk/src.opts.mk
+++ b/share/mk/src.opts.mk
@@ -129,7 +129,6 @@ __DEFAULT_YES_OPTIONS = \
LLD_IS_LD \
LLVM_COV \
LLVM_CXXFILT \
- LOADER_BIOS_TEXTONLY \
LOADER_GELI \
LOADER_KBOOT \
LOADER_LUA \
@@ -207,6 +206,7 @@ __DEFAULT_NO_OPTIONS = \
DTRACE_TESTS \
EXPERIMENTAL \
HESIOD \
+ LOADER_BIOS_TEXTONLY \
LOADER_VERBOSE \
LOADER_VERIEXEC_PASS_MANIFEST \
LLVM_ASSERTIONS \
diff --git a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile
index c2037772fc76..a4aa3a3c4d45 100644
--- a/stand/i386/loader/Makefile
+++ b/stand/i386/loader/Makefile
@@ -7,8 +7,8 @@ LOADER_CD9660_SUPPORT?= yes
LOADER_EXT2FS_SUPPORT?= no
LOADER_MSDOS_SUPPORT?= no
LOADER_UFS_SUPPORT?= yes
-LOADER_GZIP_SUPPORT?= yes
-LOADER_BZIP2_SUPPORT?= yes
+LOADER_GZIP_SUPPORT?= no
+LOADER_BZIP2_SUPPORT?= no
.include <bsd.init.mk>
# cd /usr/src/stand
# make && make install
The# moused -d -f -p /dev/psm0
Does not work at all, is a endless loop, pressing ctrl-Z stopped but the system is freesed.
moused -d
enables debugging messages. It is not supposed to terminate until terminated by the user. -d Enable debugging messages.