Team and Bond Interface with WIFI in Fedora 25
Team interface won't work without Network Manager, and Network Manager doesn't accept WIFI as a team device.
Similarly Network Manager does not accept WIFI as a bond device, but bond interface however will work without Network Manager. So WIFI works with NM_CONTROLLED=no and will have to restart network after boot to get it to work.
erase disk
badblocks -vs -p 2 -b 512 -t random -o badblocks.txt -w /dev/sdi-p is number of passes, the more the better.
dd if=/dev/urandom of=/dev/sdi bs=512 conv=notrunc
HP 6730B Fan Control After Resume
modifed from http://computertinker.blogspot.ca/2013/11/fixing-fan-speed-on-hp-6730b-laptop.html
# cat /usr/lib/systemd/system-sleep/99fancontrol.sh
#!/bin/sh
case "$1" in
pre)
# Stopping is not required.
;;
post)
# In background.
ls /sys/devices/virtual/thermal/cooling_device*/cur_state | while read A; do echo 1 > $A; echo 0 > $A; done
;;
*) exit $NA
;;
esac
Subscribe to:
Posts (Atom)