What do I do now?

Greetings

Installation was reasonably straightforward so that was good.
So I'm sitting there going well - - - I'm used to a gui desktop and at least some software (not just bald server setup - - - sorry).
So I find https://www.freebsdsoftware.org/blog/freebsd-desktop-user-guide.html
and start doing suggested steps.
Got the AMD graphics, set up XFCE and then did a reboot. (As well as earlier when suggested.)

Well now I get to where a CLI asks me for a login and then as soon as I type anything I'm switched to a blank screen with a cursor.

So - - - I've done something wrong - - - can I fix this or what other options do I have?

(Would like to have some desktop software including office stuff, X2Go, browser . . . .)

TIA
 
Its hard to tell which of those steps you followed, but you might try to get to that login again but this time, press control. alt and F2 (at the same time) and see if you can log in in on the different console.

which download did you make the initial install with?
 
Hard to tell.
If you followed the steps in The Handbook maybe you simply forgot to add your user to the video group?
(Would like to have some desktop software including office stuff, X2Go, browser . . . .)
first things first. Those are quite trivial, when your system is set up right.
First get you machine up and running.
Most problems are W-LAN and setting up the GUI with X11 and the right kernel module.

Since this is a fresh installation, so nothing valuable on it, maybe start over freshly, and stick strictly to the handbook (many third party sides mean well, but are not always up-to-date, sometimes incomplete, sometimes even not correct at all. And beware of any AI chatbot output; those can tell real junk):

After installation of basic system (RELEASE - not stable, not current! Those are future states of the system under delevopment, not yet finished, not released for production, better be not used for production at all, particulary not for a newcomer to the system.)
login as root, then you simply do
# pkg install drm-kmod automatically installs the kernel module ("driver") for your AMD GPU
# sysrc kld_list+=amdgpu this adds a line to /etc/rc.conf so the kernel module is loaded at booting
simply reboot to get the module loaded, or use # kldload ... to load it without reboot
# pkg install xorg installs X11
test, still as root, if X runs, by # startx
if the installation went correctly, you may now see X11 coming up with twm and three xterm windows
in one of that terminal windows, get the PID of the X11 session with # top
then kill that process to get back to your TTY. In top press [K] then enter the PID, then [ENTER]
Now add your user to the video group by # pw groupmod video -m username or with # bsdconfig
now install XFCE
# pkg install xfce
logout, login as user
edit your user's .xinitrc
# ee ~/.xinitrc (instead of ee you may also use vi, of course)
add as the last line xfce, save & exit the editor
now # startx
should work.
install the rest:
# pkg install firefox if you want that browser
# pkg install libreoffice
etc.

enjoy FreeBSD!
 
Back
Top