Tag: hardware
Poor Housekeeping
by Count Stex on Aug.14, 2009, under PC
| Some time ago, last year in fact my PC system started to get a bit flaky on me. You see I’m an OverClocker (See boxout) and as such I like to tweak all my PC’s components to get the most out of them, and given the somewhat aged nature of my graphics card, an HSI ATI X1900XT 512MB, I needed everything I could get. However I started to find the card locking up on me, running at clock speeds I had been running it at for quite some time. It was summer though, and the card was getting on, so I just knocked it down a little and carried on for a couple of weeks, until it once again started to play up. Eventually I found my self underclocking the card to run below even the manufactures default settings. | |
|
Overclocking is a process by which you tell PC components to run faster than they otherwise would. As you will have seen PC’s will have a speed rating such as 2.5Ghz which define how quickly they can run computations, the higher the number the faster they can get things done. These speeds are not set hard though so you can tell them to run at a higher speed, however the faster something tries to run the more power it requires, so you can only push it so far before you need to send more power (volts) through the component. With power comes heat however, and heat is the enemy of all computer components, so you will often find overclockers replacing the standard cooling elements with more advanced setups designed to excel at heat removal. If you are interested in this subject and would like to learn more, and live in the UK, I highly recommend the monthly publication CustomPC which you can find in any decent newsagents, and also the associated website www.bit-tech.net |
I started to get worried, thinking maybe I had just pushed the card so hard for so long it was finally giving out on me. It was at this time that the XBOX 360 came to stay and so I didn’t put much thought into my PC gaming for a while, and the card was fine in Windows/Linux for desktop use so I neglected to do anything about it for some time. Eventually I wanted to return to a little PC gaming, and thinking that maybe what was happening was that the Heastsink and Fan (HSF) had maybe come loose, or the Thermal Interface Material (TIM) had dried out I figured I would give this ageing card one last look over to see what I could salvage. What I found was the result of 2-3 years of neglect of my card. The entire air-flow enclosure was clogged with dust and debris, no wonder this thing couldn’t stay cool the amount of cool air actually getting to the heatsink must have been minimal. While I was in here I figured I would remove the whole structure and apply some new TIM, as I had some spare AKASA Silver-3 lying around. |
|
Putting it all back together and running though some benchmarks, I pushed my card way back up to speeds I hadn’t had in play since the card was new. I was once again able to get some decent frame rates even at my newer monitors 1920×1200 resolution, at least in Vales Source engined games that rely on a lot of CPU grunt, and for other titles I could run at 1280×800 with plenty of AA and AF to keep things looking nice. So have I learnt my lesson? Probably not, but next time things start to play up a good bit of housekeeping will be my first line of defence! |
|
![]() |
|
A huge loss…
by Count Stex on Aug.13, 2008, under Uncategorized
For some time now I’ve been storing all my large data files, photos, downloads and so on on a nice spanned volume of, just shy of, 1TB tucked away inside my girlfriends computer. It was better there than in mine as she doesn’t end up rebooting several times a night from messing around with Windows too much ![]()
It is constructed of 4 250GB IDE drives, which used to hum away inside my Netgear SC-101 until I had finally had enough of the driver based implementation they had. Using Windows XP’s built in Dynamic Drives I had them spanned together. This has been working absolutely fine for a good six months.
However, Monday night the gremlins came out and trashed one of the IDE ports on her machine. Somewhat hopefully I simply disconnected the DVD drive, and moved the two ‘lost’ disks over to that channel and waited for Windows to find the drives so I could reactivate the volume. but it wasn’t to be.. the IDE channel had obviously decided in it’s death dance to trash the tables on one of the drives, rendering any hope of a repair hopeless.
Of course this is the risk of running a purely spanned or stripped array.. no safety measure in place to catch the volume when a disk goes, however without picking up some hardware based RAID it’s pretty much the only option you have for a nice simple big old volume. (On Windows at least, a Linux server is in my future I know)
Backup, backup, backup is the cry to make next.. however I had been somewhat lax in this department and found the last full backup I had was September… 2006 .. Fortunately a combination of this and Flickr restored all of our memories in photographic form, so our losses have mainly been less dramatic items, like gaming spreadsheets and course notes.. a pity but nothing we can’t live without.
So.. for the future, having reconstructed the array, a new backup strategy was needed. Now many people would probably go out and buy themselves a backup package, or even just use Windows Backup.. but I wanted something with a little more control. So I hit upon the idea of cannibalising a backup routine I have in work which makes use of the excellent compression tool 7zip and adding on the extra safeguard of a PAR based recovery set.
The two important command lines I’ve come up with are as follows…
For 7zip I have this:
"c:\program files\7-zip\7z.exe" a -r -t7z -mx7 -v640m %backupDir%\backup -i@FilesToBackup.txt -x!recycler
Which basically evokes 7zips command line program 7z.exe and sets it to add files whilst recursing subdirectories to a 7zip format archive set using a compression level of 7 out of 10, and splitting the backup up into CD sized chunks. I may modify this to be DVD sized chunks when the data is back up to it’s original levels. The files to backup are stored in a text file imaginatively called FilesToBackup.txt and it ignores anything that might happen to be in the recycle bin folders that may appear in the location I’m backing up.
The second line which creates the robust PAR set is this:
cd %backupDir%
..\par2 c -r30 backup backup.*
Which moves into the backup folder (I couldn’t get the PAR tool to accept my variable for the backup folder so ended up forcing it into the folder before evoking the command) and creates a set large enough to recover from a 30% data loss from the 7zipped archive. I will be adjusting this level once I know how much I have to off load to CDs to cover the loss of one, or maybe two CDs from the set.
This the full .bat file, which I now have scheduled to run once a week, is as follows..
echo off
set backupDir=%date:~-4,4%%date:~-7,2%%date:~0,2%-%time:~-11,2%%time:~-8,2%%time:~-5,2%
echo.
echo.Creating new backup directory "%backupDir%"
mkdir %backupDir%
echo.
echo Backing up Files
"c:\program files\7-zip\7z.exe" a -r -t7z -mx7 -v640m %backupDir%\backup -i@FilesToBackup.txt -x!recycler
echo.
echo.Creating Recovery Files
cd %backupDir%
..\par2 c -r30 backup backup.*
The initial part is just creating a folder name made up of year-month-day-hour-minute-second to create a fairly unique folder name such as 20080813-182034, although it has a slight bug in this code, which causes the command to fail it the hour in the day is below 10, ie single figures, resulting in two folders being created and all the 7z files being in the root.. and the PAR task just fails completely! I’ll have to review that, although I’m not 100% familiar with how that part works having re-worked something I found online.. somewhere.
Feel free to make use of any of this code if you have a use for it, and if you have any ideas for improvements I’d love to hear them!
AMD take to water?
by Count Stex on Jul.03, 2008, under Uncategorized
The Guru of 3D has a report that AMD/ATi are readying a 4800 series board that comes ready fitted for water cooling. Water cooler componants can but run at much higher clocks than air cooled, in general, due to the enhanced cooling given by the water ‘sloshing’ about the components. OK it’s a little neater than that makes it sound, but you get the idea! the extra headroom, they surmise, could allow the RV770 based chip to surpass nVidia’s 280s, at base speeds I am presuming.



