Skip to main content

Home/ Linux/ Group items tagged tuning

Rss Feed Group items tagged

anonymous

Disk IO information with a Unix / Linux background - 0 views

  • The disk's ITR rating and internal cache size can be critical when tuning maxcontig (maximum contiguous I/O size). Note: maxphys and maxcontig must be tuned at the same time. The unit of measurement for maxphys is bytes; maxcontig is in blocks. maxcontig can be changed via the mkfs, newfs or tunefs commands.
  •  
    The disk's ITR rating and internal cache size can be critical when tuning maxcontig (maximum contiguous I/O size). Note: maxphys and maxcontig must be tuned at the same time. The unit of measurement for maxphys is bytes; maxcontig is in blocks. maxcontig can be changed via the mkfs, newfs or tunefs commands.
anonymous

Enabling High Performance Data Transfers [PSC] - 0 views

  •  
    These notes are intended to help users and system administrators maximize TCP/IP performance on their computer systems. They summarize all of the end-system (computer system) network tuning issues including a tutorial on TCP tuning, easy configuration checks for non-experts, and a repository of operating system specific instructions for getting the best possible network performance on these platforms
anonymous

DAG: Dstat: Versatile resource statistics tool - 0 views

  •  
    Dstat: Versatile resource statistics tool Dstat is a versatile replacement for vmstat, iostat, netstat and ifstat. Dstat overcomes some of their limitations and adds some extra features, more counters and flexibility. Dstat is handy for monitoring systems during performance tuning tests, benchmarks or troubleshooting. Dstat allows you to view all of your system resources in real-time, you can eg. compare disk utilization in combination with interrupts from your IDE controller, or compare the network bandwidth numbers directly with the disk throughput (in the same interval)
kumar app

Running Linux Programs on Windows - 6 views

  •  
    Linux is a staple brand name when it comes to computers. Over the years, it has been creating programs and operating systems that are very much in tune with the world's need these days. Actually, there is a variety of Linux programs that I find better than its counterparts. However, this program c
Ankgi Soekarmana

Getting Started With Linux: Fine-Tuning Your Hardware | Gizmodo Australia - 0 views

  • You don’t really need copy/paste shortcuts in linux, as long as you have a middle button (or clickable scrollwheel, as almost every mouse has). You simply highlight the text you wish to copy, then middle click where you’d like to paste it. Simple!
Maluvia Haseltine

Is dd better than cat? - Stack Overflow - 6 views

  • fubar'd
  • 'cat' only knew
  • about character I/O
  • ...6 more annotations...
  • dd' was needed to interact with the block devices,
  • 0 down vote You want to use dd so that you can specify things like bsize
  • tuning this to some multiple of 4k is going to be much faster than cat
  • dd has a number of useful extra features for more complex data copies
  • 2 down vote If I remember correctly, dd is much more "low level" in is approach, skipping such fancy things as filesystems and all the bells and whistles :)
  • dd is problematic in the presence of disk errors, and can hang or more importantly ignore non readable data
  •  
    Fascinating discussion over at Stack Overflow. Elucidates some of the subtle differences between dd and cat, and when and why you might want to use one over the other.
anonymous

Ubuntu Server: Kernel Configuration Considerations - ServerWatch.com - 0 views

  • Preemption The server kernel has kernel preemption turned off (CONFIG_PREEMPT_NONE=y), while the desktop kernel has it enabled (CONFIG_PREEMPT_BKL=y, CONFIG_PREEMPT_VOLUNTARY=y). Preemption works along with scheduling to fine-tune performance, efficiency and responsiveness. In non-preemptive kernels, kernel code runs until completion; the scheduler can't touch it until it's finished. But the Linux kernel allows tasks to be interrupted at nearly any point (but not when it is unsafe, which is a whole huge fascinating topic all by itself), so that tasks of lesser-priority can jump to the head of the line. This is appropriate for desktop systems because users typically have several things going at once: writing documents, playing music, Web surfing, downloading and so on. Users don't care how responsive background applications are; they care only about the ones they're actively using. So if loading a Web page takes a little longer while the user is writing an e-mail, it's an acceptable trade-off. Overall efficiency and performance are actually reduced but not in a way that annoys the user. On servers you want to minimize any and all performance hits, so turning off preemption is usually the best practice.
1 - 7 of 7
Showing 20 items per page