Adapted from here.
Get Fn F5/F6 working:
sudo emacs etc/default/grub
Change the following: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
sudo update-grub
reboot the system... Now the splash screen should show up.
| Section "Device" | |
| Identifier "Default Device" | |
| Driver "nvidia" | |
| Option "NoLogo" "True" | |
| Option "RegistryDwords" "EnableBrightnessControl=1" | |
| EndSection |
| # /etc/X11/xorg.conf.d/20-intel.conf | |
| Section "Device" | |
| Identifier "card0" | |
| Driver "intel" | |
| Option "Backlight" "intel_backlight" | |
| BusID "PCI:0:2:0" | |
| Option "AccelMethod" "uxa" | |
| Option "TearFree" "true" | |
| EndSection |
Adapted from here.
Get Fn F5/F6 working:
sudo emacs etc/default/grub
Change the following: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
sudo update-grub
reboot the system... Now the splash screen should show up.
| blacklist amd76x_edac | |
| blacklist vga16fb | |
| blacklist nouveau | |
| blacklist rivafb | |
| blacklist nvidiafb | |
| blacklist rivatv |
| <?php | |
| echo fs_filehandler::NewLine() . "START Apache Config Hook." . fs_filehandler::NewLine(); | |
| if (ui_module::CheckModuleEnabled('Apache Config')) { | |
| echo "Apache Admin module ENABLED..." . fs_filehandler::NewLine(); | |
| TriggerApacheQuotaUsage(); | |
| if (ctrl_options::GetSystemOption('apache_changed') == strtolower("true")) { | |
| echo "Apache Config has changed..." . fs_filehandler::NewLine(); | |
| if (ctrl_options::GetSystemOption('apache_backup') == strtolower("true")) { | |
| echo "Backing up Apache Config to: " . ctrl_options::GetSystemOption('apache_budir') . fs_filehandler::NewLine(); | |
| BackupVhostConfigFile(); |
| function random_text( $type = 'alnum', $length = 8 ) | |
| { | |
| switch ( $type ) { | |
| case 'alnum': | |
| $pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; | |
| break; | |
| case 'alpha': | |
| $pool = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; | |
| break; | |
| case 'hexdec': |
| /** | |
| * Cidori CSS v2.2 | |
| * @codename: RallySmooth | |
| * | |
| * @author: Patrick Reid | |
| * @link: http://www.reliqartz.com | |
| */ | |
| /* :Utilities |