aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Acer Aspire 5738/aspire-5738.txt35
-rw-r--r--README.md2
2 files changed, 37 insertions, 0 deletions
diff --git a/Acer Aspire 5738/aspire-5738.txt b/Acer Aspire 5738/aspire-5738.txt
new file mode 100644
index 0000000..09d424c
--- /dev/null
+++ b/Acer Aspire 5738/aspire-5738.txt
@@ -0,0 +1,35 @@
+# FreeBSD 11.1 notes for Acer Aspire 5738
+
+### Sound
+mixer vol +8
+mixer vol -8
+mixer vol mute # equivalent to mixer vol 0. Does not save previous value.
+mixer vol 56 # scales 0-100
+
+Send audio to hdmi:
+sysctl hw.snd.default_unit=2
+
+### Video
+For intel integrated graphics
+pkg install xf86-video-intel
+
+For screen brightness, check contents of https://github.com/bgstack15/bgscripts/blob/master/usr/share/bgscripts/gui/hwset.sh
+
+### Get hardware information
+kenv
+kenv | grep smbios.system
+kenv smbios.system.maker
+kenv smbios.system.product
+
+### Packages
+List available packages
+pkg search \. > ~/pkg.search.$( date "+%Y-%m-%d" ).log
+
+List installed packages
+pkg info > ~/pkg.info.$( date "+%Y-%m-%d" ).log
+
+### CPU temperature
+sysctl hw.acpi.thermal.tz{0,1}.temperature
+
+# Reference
+https://forums.freebsd.org/threads/17849/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4f56cf6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,2 @@
+# FreeBSD Notes for Different Platforms
+This repository is my notes for how to use FreeBSD on different platforms. Hopefully it will help somebody searching.
bgstack15