My ordeal with FreeBSD...

1- can't change time [ 12 hours ahead ]
Did you properly set your timezone during the setup? If not then you may set it now using # ln -s /usr/share/zoneinfo/<region>/<city> /etc/localtime. And use date(1) to adjust it.

2- NO scroll on mouse
Do you mean on the console? I have no idea if it's even supposed to work as I've never used it there. Still, you may want to check this.
I've always found the keyboard arrow and page up/down keys (with scroll lock on) more usable.

5- sound to minimum LEVEL
What does the mixer say?
 
What does the mixer say?

Hi and thanks !

Code:
 mixer
Mixer vol      is currently set to  50:50
Mixer pcm      is currently set to 100:100
Mixer speaker  is currently set to  74:74
Mixer mic      is currently set to  56:56
Mixer mix      is currently set to  74:74
Mixer rec      is currently set to  35:35
Mixer igain    is currently set to   0:0
Mixer ogain    is currently set to 100:100
Mixer monitor  is currently set to  56:56
Recording source: monitor
 
Disable sendmail or use a proper fqdn

/etc/rc.conf
Code:
hostname="BSD"
keymap="us"
ifconfig_re0="DHCP"
sshd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
#moused_enable="YES"
cron_enable="NO"

Disable sendmail cron _enable ="NO"
 
OK , solved 1 , 4 and 5 til now ...

for touchpad scroll I followed this : https://forums.freebsd.org/threads/54872/ with NO Xorg -configure
Code:
# Xorg -configure
(EE)
Fatal server error:
(EE) Server is already active for display 0
        If this server is no longer running, remove /tmp/.X0-lock
        and start again.
(EE)
(EE)
Please consult the The X.Org Foundation support
         at http://wiki.x.org
 for help.
(EE)
 
What is in /etc/hosts?
Code:
#
# This file should contain the addresses and aliases for local hosts that
# share this file.  Replace 'my.domain' below with the domainname of your
# machine.
#
# In the presence of the domain name service or NIS, this file may
# not be consulted at all; see /etc/nsswitch.conf for the resolution order.
#
#
::1           localhost localhost.my.domain
127.0.0.1       localhost localhost.my.domain
#
# Imaginary network.
#10.0.0.2       myname.my.domain myname
#10.0.0.3       myfriend.my.domain myfriend
#
# According to RFC 1918, you can use the following IP networks for
# private nets which will never be connected to the Internet:
#
#   10.0.0.0   -   10.255.255.255
#   172.16.0.0   -   172.31.255.255
#   192.168.0.0   -   192.168.255.255
#
# In case you want to be able to connect to the Internet, you need
# real official assigned numbers.  Do not try to invent your own network
# numbers but instead get one from your network provider (if any) or
# from your regional registry (ARIN, APNIC, LACNIC, RIPE NCC, or AfriNIC.)
#
 
Back
Top