Just in case you're looking for downloads for your Seagate product (i. e., HDD firmware updates, manuals & software), here's a useful link:
Software & hardware info, reviews, notes, tutorials, FAQs and HOWTOs...
Having fun is mandatory!
2013-10-08
2013-10-04
MS Windows installation on Sun / Oracle computer with SPARC CPU (video tutorial)
MS Windows XP & 7 (and more): installation on Sun Fire V240 server (with UltraSPARC IIIi CPU) — video tutorial (in Russian) :-)
2013-10-03
2013-09-30
LCD display optimized video mode: CVT-R & Linux
Many modern LCD displays (ones with 60 Hz vertical refresh frequency)
should support an improved video mode with reduced blanking intervals
(CVT-R),
which can save some signal bandwidth and reduce the cost of the cabling
(sometimes you can use a single-link DVI / HDMI cable instead of a dual-link one to support some of the high-definition resolutions; due to reduced signal bandwidth, a longer, cheaper cable with a non-perfect shielding can be used with reduced risk of electromagnetic interference).
Unfortunately, the best mode sometimes can be missing from the display's EDID ("extended display identification data" accessed by computer through DDC), so your computer won't be able set the best mode automatically, and you'll need to do some manual configuration.
(The sample commands are for Debian GNU/Linux 7.0 "Wheezy", but should work for many other systems).
See also:
Unfortunately, the best mode sometimes can be missing from the display's EDID ("extended display identification data" accessed by computer through DDC), so your computer won't be able set the best mode automatically, and you'll need to do some manual configuration.
(The sample commands are for Debian GNU/Linux 7.0 "Wheezy", but should work for many other systems).
- First of all, find out the native resolution (e. g., 1920 x 1080) and refresh rate (should be a multiple of 60 Hz: 60 Hz, 120 Hz etc.) for your display.
- Try to calculate a suitable video mode string using
cvtutility (from thexserver-xorg-coreDebian package); 60 Hz is the default refresh rate, so it can be omitted:$ cvt -r 1920 1080 # 1920x1080 59.93 Hz (CVT 2.07M9-R) hsync: 66.59 kHz; pclk: 138.50 MHz Modeline "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync $ cvt -r 1920 1080 120 # 1920x1080 119.88 Hz (CVT) hsync: 137.14 kHz; pclk: 285.25 MHz Modeline "1920x1080R" 285.25 1920 1968 2000 2080 1080 1083 1088 1144 +hsync -vsync - Check the current video mode of your display through the display's menu (and write down those values somewhere for reference).
If the actual clock values are higher than calculated by
cvt, then it's reasonable to test the freshly calculated video mode. - For quick video mode changes, you can use
xrandrutility (from thex11-xserver-utilsDebian package):$ xrandr Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192 DVI1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 456mm x 123mm 1920x1080 60.0*+ 1024x768 60.0 800x600 60.3 56.2 640x480 59.9 VGA1 disconnected (normal left inverted right x axis y axis) HDMI1 disconnected (normal left inverted right x axis y axis) $ xrandr --output DVI1 --mode 800x600 $ xrandr --newmode "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync $ xrandr --addmode DVI1 1920x1080R $ xrandr --output DVI1 --mode 1920x1080R - For permanent effect, you'll need to change X11 settings by putting the generated modeline into the proper section of the
/etc/X11/xorg.confconfig file:Don't forget to restart the X server for updated configuration to take effect.Section "Monitor" Identifier "Monitor0" VendorName "Vendor1" ModelName "Model2" HorizSync 30.0 - 150.0 VertRefresh 50.0 - 160.0 Option "DPMS" "true" Modeline "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync EndSection Section "Screen" Identifier "Screen0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1920x1080R" EndSubSection EndSection - The video mode for Linux console probably can be changed using KMS (kernel mode setting); there's some good info about KMS settings on nouveau Wiki.
See also:
2013-08-31
HOWTO: configure the OS to use a 100 Hz refresh capable CRT monitor in Linux
- Test environment.
- Hardware
- Monitor: Samsung SyncMaster 959NF
- Test display resolution:
1024 * 768 @ 100 Hz
- Test display resolution:
- Video card: based on Nvidia GeForce2 MX400
$ lspci | grep -i nvidia 01:00.0 VGA compatible controller: NVIDIA Corporation NV11 [GeForce2 MX/MX 400] (rev b2) - CPU: x86-compatible (some old AMD Athlon one)
- Monitor: Samsung SyncMaster 959NF
- Software
- OS: Debian GNU/Linux 7.0 "Wheezy" / i386
- Video driver: nouveau
- Hardware
-
X11 graphical mode configuration.
- Use
cvtutility to generate a modeline for X11:
Note: 100 Hz is a non-standard refresh rate for CVT.$ cvt 1024 768 100 # 1024x768 99.97 Hz (CVT) hsync: 81.58 kHz; pclk: 112.25 MHz Modeline "1024x768_100.00" 112.25 1024 1096 1200 1376 768 771 775 816 -hsync +vsync
If CVT timings don't work for some ancient monitor, you can also try to usegtfutility to generate somewhat older GTF timings:
Both$ gtf 1024 768 100 # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz Modeline "1024x768_100.00" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsynccvt>futilities are part ofxserver-xorg-coreDebian package. - Change X11 settings by putting the generated modeline into the proper section of the
/etc/X11/xorg.conffile:
Section "Monitor" Identifier "Monitor0" VendorName "Samsung" ModelName "SyncMaster" HorizSync 30.0 - 110.0 VertRefresh 50.0 - 160.0 Option "DPMS" "true" Modeline "1024x768_100.00" 112.25 1024 1096 1200 1376 768 771 775 816 -hsync +vsync EndSection Section "Screen" Identifier "Screen0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1024x768_100.00" EndSubSection EndSection - Restart the X server for updated configuration to take effect.
- Use
-
Here are the sample settings for non-X11 user interfaces, put into
/etc/default/grub(the GRUB2 config).
For modified settings to make effect, don't forget to executeupdate-grub2as superuser and then reboot.
Notes:... GRUB_CMDLINE_LINUX="video=VGA-1:1024x768M@100" ... # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' GRUB_GFXMODE=1024x768 ...- The Linux command line option mentioned aboves allows to set a desirable video mode for virtual console using kernel mode setting (KMS).
There's more info about KMS settings on nouveau Wiki. - Display refresh rate doesn't seem to be specifiable for GRUB bootloader graphical mode. This initial graphic mode depends heavily on VBE.
- Other caveats: video play in console framebuffer (i. e., using
mplayer) has not seemed to work for me in this test setup.
- The Linux command line option mentioned aboves allows to set a desirable video mode for virtual console using kernel mode setting (KMS).
See also:
Subscribe to:
Posts (Atom)