overclocking 6950/6970 past ccc limits

to overclock your 6950/6970 past the defined ccc limits racerx made a very usefull tool.

it edits the registry keys from catalyst control center to give you higher overclock limits

Download

Posted in Tools | Leave a comment

6950 2gb modded reference bios

the 6950 and 6970 are essentially the same cards.
so i made a bios with the 6970 shaders unlockt the normal 6950 mem timings and 1.15 volt on the gpu core (the 6950 gets 1.1 and the 6970 1.75) so i gave it 1.15 for some more overclocking headroom

download

Posted in Tools | Leave a comment

how to enable trim windows 7

to check if trim is enabled paste the following in to a command prompt window with administrator rights : fsutil behavior query DisableDeleteNotify

it should return 0 if it returns 1 you can enable trim by pasting:
fsutil behavior set disablenotify 0

Posted in How To | Leave a comment

Disable Universal Access gnome 3

Edit the file: /usr/share/gnome-shell/js/ui/panel.js

find the line

'a11y': imports.ui.status.accessibility.ATIndicator,

change it to :

//'a11y': imports.ui.status.accessibility.ATIndicator,

Posted in Uncategorized | Leave a comment

auto login windows 7

open run window and paste: control userpasswords2
and uncheck : Users must enter a user name and password to use this computer

Posted in Uncategorized | Leave a comment

how to disable hibernate windows 7

to disable hibernate windows 7
open cmd with admin rights and paste
powercfg -h off

Posted in How To | Leave a comment

how to install gnome 3 shell ubuntu 11.10

Just open a terminal and past :
sudo apt-get install gnome-shell

To set it as default shell :
sudo /usr/lib/lightdm/lightdm-set-defaults -s gnome-shell

To change back to unity :
sudo /usr/lib/lightdm/lightdm-set-defaults -s ubuntu
logout en select the gnome shell when loging in or just reboot

Posted in How To | Leave a comment

Windows 8 developer preview classic/normal start menu

If you want to enable the windows 7 style start menu you can but it disables all the MetroUI features.
To enable the Windows 7 style start menu just open regedit.exe and search for HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer

and change RPEnabled to 0

Posted in Fixes, How To | Leave a comment

how to format drives in linux

first chek what drive you want to format with : sudo fdisk -l
once you  found the drive do : sudo fdisk /yourdrive/
now press p
you will get a list of the partitions
if you want to delete a partition press d and select the partition you want to delete
to make a new partition pres n
and to write the filesystem pres t  and select hex option 83
to write this setup to the disk pres w
and to quit pres q
to make a filesystem with mkfs execute :  -t ext4 /dev/sdc1
other options than ext4 are ext2, ext3, mkfs, reiserfs and many more

Posted in How To | Leave a comment

mounting usb drives in fstab

first run
sudo blkid
than select the disk uuid from the disk you want to mount automatically copy it and past it in fstab like :
UUID=your-own-hdd-uuid-key /your/mountpoint/ ext4 relatime,errors=remount-ro 0 1
to test if it mounts correctly execute
sudo mount -a

Posted in How To | Leave a comment