Difference between revisions of "How To"
(→How to load kernel modules) |
(→How to load kernel modules) |
||
Line 104: | Line 104: | ||
<code>fuse_load="YES"</code><br/> | <code>fuse_load="YES"</code><br/> | ||
<code>vboxdrv_load="YES"</code> | <code>vboxdrv_load="YES"</code> | ||
+ | |||
See also: [[Kernel Competence]] | See also: [[Kernel Competence]] | ||
Revision as of 11:38, 26 February 2020
Welcome to the How To |
Contents
- 1 Introduction
- 2 Tips and Tricks
- 2.1 OS related
- 2.2 Virtualization
- 2.3 Software
- 2.4 Hardware / Kernel related
- 2.4.1 How can I find out if my hardware is supported
- 2.4.2 How to get information about loaded modules into the kernel
- 2.4.3 How to get information about loadable kernel modules
- 2.4.4 How to load kernel modules
- 2.4.5 HowTo setup Wifi Edimax EW-7811utn USB Dongle for GhostBSD
- 2.4.6 How to setup RealTek RTL8188CE Wii-Fi PCI network hardware
- 2.4.7 How to install nvidia drivers
- 2.4.8 How to set mouse cursor if bit too sensitive and fast
- 2.4.9 How is the battery optimization for GhostBSD
- 2.4.10 Some issues with WLAN/WiFi
- 2.4.11 drm-fbsd12.0-kmod
- 2.4.12 How to install Nvidia drivers?
- 2.5 Files and file systems
- 2.6 Mount / unmount
- 2.7 System management
- 3 More tips and tricks
Introduction
On this page we will collect some tips and tricks from users to users. It is not always sure, that a tip helps for your issue, but if so, you can comment on the Discussions page or write you solution in this list with your name as source.
It is not a forum. If you have a question and no answer yet, go to GhostBSD Forums.
But if you got a solution for your issues, you are welcome to describe it here in a short way.
Some proposals need to get there own pages, because of there volume. (see the blue links)
Tips and Tricks
How to move from Trident to GhostBSD?
Here you will find a Step by step tutorial on GitHub.
How to install GhostBSD/FreeBSD on a ThinkPad T530.
Here you will find a guide to a fully functional installation
How to get some information about your running system
- Get some system information, kernel version, release date by using sysctl
- With
uname -a
You get: FreeBSD yourname.ghostbsd-pc.home 12.1-STABLE FreeBSD 12.1-STABLE GENERIC amd64
It is a summary of kernel information, you can get with sysctl NAME.
- More information to uname on the man page.
How to find multiple interface language packs on GhostBSD
- Go to Profile
How to set openrc parallel service startup
Put in
/etc/rc.conf
rc_parallel="YES"
"But I don't think it works properly yet."
Source: Neville Goddard on Telegram on 16.02.2020 at 15:40
Virtualization
How to install VirtualBox on GhostBSD
Guide to install VirtualBox on GhostBSD
Software
How to find Software on GhostBSD
- Go to GhostBSD Wiki or Applications
- Than to Application Management and choose your preferred method for installation.
How to Run Orchestrator on Ghost/FreeBSD
Use this tip: percona
Using Ports
"Don't use FreeBSD ports via portsnap on GhostBSD
Install it from GhostBSD ports
sudo git clone https://github.com/ghostbsd/ghostbsd-ports/ /usr/ports
Source: ericbsd
Looking for devtools?
"Devtools are not installed by default" on GhostBSD
You have to install them:
sudo pkg install os-generic-userland-devtools
Source: ericbsd
Like to change the display manager
sudo rc-update delete lightdm
sudo rc-update add gdm
Tip from Eric on Telegram at 27.01.2020 17:09
Migrate from Linux to GhostBSD and take your E-Mails and bookmarks with you
You would like to move from a Linux OS to GhostBSD and take your settings and E-Mails from Thunderbird and bookmarks from Firefox to GhostBSD.
Go on Linux to .thunderbird and .mozilla in your home directory and safe each folder /xyz.default and insert the contents in the folder /xyz.default-release on GhostBSD. xyz is only a replacement for bk3yc9n7 or something similar.
This worked from Debian to GhostBSD. Tested by Slughorn
How can I find out if my hardware is supported
The first step should be: Look on both pages: Kernel and Modules first.
How to get information about loaded modules into the kernel
- You get some information with the command
kldstat
- The kldstat utility displays the status of any files dynamically linked into the kernel.
How to get information about loadable kernel modules
- Loadable kernel modules related to hardware, firmware, graphics driver. and virtual machines you will find in the directory of your system: /boot/modules/ and /boot/kernel/
All files end with .ko.
How to load kernel modules
Once the machine has booted, you may load a module with the command kldload
, unload with kldunload
and list with kldstat
.
Modules can also be loaded from the loader before the kernel starts, automatically if you makes an entry in the /boot/loader.conf.
For example:
fuse_load="YES"
vboxdrv_load="YES"
See also: Kernel Competence
HowTo setup Wifi Edimax EW-7811utn USB Dongle for GhostBSD
HowTo setup Wifi Edimax EW-7811utn USB Dongle for GhostBSD
How to setup RealTek RTL8188CE Wii-Fi PCI network hardware
RealTek RTL8188CE Wii-Fi PCI network hardware setup
How to install nvidia drivers
How to set mouse cursor if bit too sensitive and fast
mouse cursor - bit too senstive and fast even on lowest setting
How is the battery optimization for GhostBSD
Eric Turgeon, [21.02.20 11:50] [In reply to Jared] sudo rc-update add powerd default helps a lot.
Some issues with WLAN/WiFi
Proposals from the community see on special page WLAN
drm-fbsd12.0-kmod
Very important: when I send the next @GhostBSD packages everyone that uses drm-fbsd12.0-kmod need to make a sudo pkg upgrade -f drm-fbsd12.0-kmod or pkg upgrade -f if not on reboot you will have a kernel panic at less for intell."
Source: Eric on Telegram 4.2.2020 15:23
How to install Nvidia drivers?
Look on the linked page.
Files and file systems
Search for Files on GhostBSD
There is a very useful application called catfish that can be used to search your computer for files. Read more on the GhostBSD Forum. Author: Neville Goddard
Mount / unmount
How to mount Ext4 internal SSD
Show USB devices
- Connect USB device
- Open a terminal
- Change to root
- Write: # gpart show
- gpart will show you the device dax and the partition sx
mount NTFS
- Do first
gpart show
- Install: ntfs-3g
- Write:
# ntfs-3g /dev/da5s1 /mnt
- da5s1 is an example
- /mnt is the mountpoint you wish
- open Thunar and go to /mnt
- Thunar shows you the content of your device and you can work with it
- Caja does not allways
Source: Tested by Slughorn
Thanks to:user hunghung
mount FAT32
See also msdosfs
- Do first
gpart show
- Write:
# mount -t msdosfs /dev/da5s1 /mnt
- da5s1 is an example
- /mnt is the mountpoint you wish
- open Thunar and go to /mnt
- Thunar shows you the content of your device and you can work with it
- Caja does not always
Tested by Slughorn
Thanks to:user hunghung
System management
rc
Command scripts for auto-reboot and daemon startup|br/> See: Man Page
pkg is locked by an other process
sudo killall -9 pkg && sudo pkg update -f && sudo pkg upgrade -y
Suggestion from #hd_scania on Telegram on 25.01.2020 at 11:10
System sticks during shutdown
If your system sticks during shutdown at: Saving dependencies cache
- Do:
sudo rc-update delete savecache shutdown
That will remove save cache.
Tip from Eric
More tips and tricks
- on the GhostBSD Forum
- FreeBSD Wiki
- The FreeBSD Forums
- If you look for something special, we recommend Howtos from FreeBSD
Back to the Applications |