It seems that you are unregistered. Please register with us by clicking Here, or if you are already registered login here
User Name: Password:
Urdu Poetry/Shayari Forum

Urdu Poetry Forum

Welcome to Urdu Community & Poetry/Shayari Forum

 


Troubleshooting-File-System-Problems

This is a discussion on Troubleshooting-File-System-Problems within the Information Technology forums, part of the Education & Learning category; Troubleshooting-File-System-Problems This article presents a systematic approach to troubleshooting file system problems on servers running Windows Server 2003. Various tools ...


Go Back   Urdu Poetry/Shayari Forum > Welcome To HallaGulla - Urdu Poetry Forum > Education & Learning > Information Technology

Video Photo Books Games Sites Register Groups FAQ Calendar Mark Forums Read Chat

Notices

Rate This Thread - Troubleshooting-File-System-Problems.
(0)
Thread Rating: 0 votes, average.

Reply
 
LinkBack Thread Tools
  #1  
Old 01-14-2008, 08:44 AM
ilAli's Avatar
.•*•.Dream Work.•*•.
 
Join Date: May 2007
Location: Tention Kadah
Posts: 5,929
My Mood:
Thanks: 99
Thanked 140 Times in 106 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power: 1228
ilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond repute
Default Troubleshooting-File-System-Problems

Troubleshooting-File-System-Problems
This article presents a systematic approach to troubleshooting file system problems on servers running Windows Server 2003. Various tools for troubleshooting disk problems are examined and best practices for using them are explained.
A corrupt or damaged file system can result in various effects ranging from data loss to rendering your system unbootable. Smart IT pros will therefore take steps to maintain their servers' file systems and will know how to systematically troubleshoot disks when things go wrong. This article discusses both preventive disk maintenance and provides some tips for using various tools to maintain and troubleshoot file systems on Windows servers.
Seven Golden Rules for Disk Maintenance
Let's begin with a proactive approach to file system maintenance. What steps should an administrator take to help prevent file system problems from happening in the first place? Here are my seven golden rules on the subject, in no particular order:
1. Upgrade your servers to Windows Server 2003. There's real value in doing this as far as disk maintenance is concerned, for example:
• The chkdsk command in Windows Server 2003 runs a lot faster than the Windows 2000 version of this utility, plus it can fix things like a corrupt Master File Table (MFT) that the previous version of the utility would choke on.
• Powerful new command-line tools like DiskPart.exe, Fsutil.exe and Defrag.exe give you more flexibility for managing disks from the command-line instead of the GUI. These tools can be scripted to automate common disk management tasks you need to perform on a regular basis.
• The new Automated System Recovery (ASR) feature greatly simplifies the task of restoring your system/boot volume in the event of catastrophic disk failure.
2. Use hardware redundancy. RAID 1 disk mirroring lets you recover from catastrophic system volume failure with zero downtime, while RAID 5 is a great way of protecting your data volumes. Windows servers include support for built-in software RAID but you'll get better performance and true hot-swap redundancy by investing more money and buying a hardware RAID controller for your system instead. Don't forget though, keep a few spare drives handy so you can swap them during an emergency—redundancy is useless if you don't have the redundant hardware around to use it. Note that if you do choose to go with the software RAID provided by Windows, mirroring your boot and system volumes requires that these volumes be one and the same i.e. one volume is both your boot volume (contains operating system files) and your system volume (contains hardware-specific boot files).
3. Use a good antivirus program. Viruses can be nasty, and one of the things they can do when they infect a machine is to corrupt the Master Boot Record (MBR) and other critical portions of your hard drives. Not only should you have AV installed on your servers, you should also avoid risky behaviors such as running scripts from untrusted sources, browsing the web, and so on. These are just the kinds of behavior that can lead to infecting your system, so avoid doing things like this on your production servers.
4. Defragment your file systems on a regular basis. This is especially important on servers on which a high number of transactional operations occur as the file systems can quickly become fragmented, dragging down the performance of applications running on your server. To perform a successful defrag you should really have at least 15% free space left on your disk, so make sure you don't let critical system or data disks fill up too much or they'll be harder to maintain. The new command-line Defrag.exe tool of Windows Server 2003 is useful here since you can schedule regular running of this tool during off-hours using the Schtasks.exe command instead of having to defrag manually or buy a third-party defrag tool.
5. Run chkdsk /r on a regular basis. This command finds bad sectors on your disk and tries to fix them by recovering data from them and moving it elsewhere. You can run this command either from a command-prompt window or from the Recovery Console if you can't boot your system normally. Remember that when you try and run chkdsk.exe on your system or boot volume, Windows configures autochk.exe (the boot version of chkdsk.exe) to run at your next reboot. This means you'll need to schedule downtime for your server when you perform this kind of maintenance so that autochk.exe can run.
6. Check your event logs regularly for any disk-related events. Windows sometimes determines on its own when a disk is "dirty" i.e. there are file system errors present on it. In that case, Windows automatically schedules autochk.exe to run at the next reboot, but it also writes an event to the Application log using either the source name "Chkdsk" or "Winlogon". So filter your Application log to view these kinds of events on a regular basis or collect them using Microsoft Operations Manager (MOM) or whatever other systems management tool you use on your network.
7. Back up all your volumes regularly. As a last recourse in the event of a disaster, having working backups of both your system/boot volume and data volumes is critical. ASR in Windows Server 2003 makes backing up the boot/system volume easier, while backing up your data volumes can be done using the Windows Backup (ntbackup.exe) tool or any other backup tool such as one from a third-party vendor. Whatever way you choose to back up your system, do it regularly and verify your backups to ensure you can recover your system using them.
I should also add an eighth and final rule as well:
8. (the Platinum rule) If your disk starts to make funny sounds, don't ignore them—do something. Disk failure is often preceded by funny sounds emanating from your computer. These clicking, scraping, screeching, or other types of sounds mean trouble, so when you hear them it's time to make sure you've got a recent backup and a spare disk handy just in case. And it's also time to check your event logs, run chkdsk –r, and use other maintenance and troubleshooting tools to check the health of your disks. Don't ignore these funny sounds!
Tips for Troubleshooting
While a proactive approach to maintaining disks and their file systems is important, it's also inevitable that disasters will occur and you'll need to react to them appropriately. Here are some tips to using one of the key maintenance tools for disk and file systems that is included with Windows Server 2003, namely Chkdsk.exe:
• Make sure you know you have a good recent backup before you run chkdsk.exe.
• Never interrupt Chkdsk.exe while it's doing its job.
• Make sure you have enough time during your maintenance downtime window to run Chkdsk.exe—on very large volumes this command can take a long time to finish its work. To speed up the operation of Chkdsk.exe on very large volumes, you can run it in a "light" form by specifying chkdsk drive_letter /f /c /i before you try running the slower chkdsk /r.
• Chkdsk.exe can't run on the boot/system volume when Windows is running, and it also can't run on data volumes when file handles are open on the volume. The reason being that in both of these situations Chkdsk.exe is unable to lock the volume for its exclusive use. In these cases, Chkdsk.exe will be scheduled to run at the next system restart.
• If you think your volume may be dirty but you don't want Autochk.exe to run when it reboots—for instance, if your server is heavily used and you can't afford the downtime while Autochk.exe runs—you can use the Chkntfs.exe command to first determine whether the volume is dirty or not, and second to find out whether Autochk.exe is currently schedule to run at the next restart. If you determine that the volume is dirty and Autochk.exe is scheduled to run at next restart, you can delay running Autochk.exe using the chkntfs /d command. Note however that doing this is risky—if your volume is dirty you should deal with it as soon as possible and not procrastinate.
Conclusion
Proper disk maintenance requires both proactive actions and knowledge of how to properly use file system troubleshooting tools. Make sure you become familiar with the tools included in Windows Server 2003, and be sure to follow the seven (or eight) rules outlined in this article so you can keep your disks humming (but not screeching) along.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 01-15-2008, 09:21 AM
SVhost's Avatar
VpTray
 
Join Date: Sep 2006
Location: Karachi, Pakistan
Posts: 1,912
Blog Entries: 2
Thanks: 65
Thanked 38 Times in 30 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power: 1186
SVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond repute
Default Re: Troubleshooting-File-System-Problems

Very Good Post Dear,
if you post in break then it will be good,
coz most of users dont have free time like me to read in ones

But Good Post.

Keep Sharing..........

Ah.
__________________


SVhost
Cell: +9203332399324
[Only registered and activated users can see links. ]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 01-15-2008, 07:06 PM
desert_soldier79's Avatar
Learning
 
Join Date: Jan 2007
Location: Kingdom of Bahrain
Posts: 3,600
Thanks: 63
Thanked 81 Times in 53 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power: 1064
desert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond reputedesert_soldier79 has a reputation beyond repute
Default Re: Troubleshooting-File-System-Problems

itni lambi kahani? uffff kaun parey ga yaar. isi waja se tho hum school se bhagey ab idher bhi.
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 01-20-2008, 10:55 AM
ilAli's Avatar
.•*•.Dream Work.•*•.
 
Join Date: May 2007
Location: Tention Kadah
Posts: 5,929
My Mood:
Thanks: 99
Thanked 140 Times in 106 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power: 1228
ilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond reputeilAli has a reputation beyond repute
Default Re: Troubleshooting-File-System-Problems

Quote:
Originally Posted by desert_soldier79 View Post
itni lambi kahani? uffff kaun parey ga yaar. isi waja se tho hum school se bhagey ab idher bhi.
Fikaar naat main isska "SHARBAT-E-MUTARABRU"bana raha hon jisey jo bhi peeiye gaa wahi...Ilam ki roshni se maala maal hojayega...theek hai?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 01-20-2008, 11:40 AM
SVhost's Avatar
VpTray
 
Join Date: Sep 2006
Location: Karachi, Pakistan
Posts: 1,912
Blog Entries: 2
Thanks: 65
Thanked 38 Times in 30 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power: 1186
SVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond reputeSVhost has a reputation beyond repute
Default Re: Troubleshooting-File-System-Problems

Quote:
Originally Posted by ilAli View Post
Fikaar naat main isska "SHARBAT-E-MUTARABRU"bana raha hon jisey jo bhi peeiye gaa wahi...Ilam ki roshni se maala maal hojayega...theek hai?
"Sharbat-e-Mutarabru" ya Phir Small HDD :D.

AH.
__________________


SVhost
Cell: +9203332399324
[Only registered and activated users can see links. ]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Tags
file system

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are Off
Pingbacks are Off
Refbacks are On

Urdu Poetry Forum RSS Feed Photo Gallery RSS Feed


All times are GMT +1. The time now is 04:57 AM.


Copyrights: All rights reserved.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454