User:Digimer: Difference between revisions

From Alteeve Wiki
Jump to navigation Jump to search
(7 intermediate revisions by the same user not shown)
Line 7: Line 7:
This page below is my scratch pad.
This page below is my scratch pad.


= Hardware =
= Misc =


* [[HP-Specific Notes]]
{| class="wikitable"
|- style="vertical-align:top;"
| style="height:100px; width:100px; text-align:left;" | A
| style="height:100px; width:100px; text-align:center;" | B
| style="height:100px; width:100px; text-align:right;" | C
|- style="vertical-align:middle;"
| style="height:100px; width:100px; text-align:left;" | D
| style="height:100px; width:100px; text-align:center;" | E
| style="height:100px; width:100px; text-align:right;" | F
|- style="vertical-align:bottom;"
| style="height:100px; width:100px; text-align:left;" | G
| style="height:100px; width:100px; text-align:center;" | H
| style="height:100px; width:100px; text-align:right;" | I
|}


= Random Stuff In Random States =


* [[AN!Clusters Tutorial 3]]
{| class="wikitable" width="100%"
* [[PPPower Server]] Tutorial.
|- style="vertical-align:middle;"
* [[Sheepdog on EL6]] Tutorial.
| style="text-align:center; vertical-align:middle;" | [[image:Brocade_icx6610-48_front-left.png|thumb|center|400px|Brocade [http://www.brocade.com/products/all/switches/product-details/icx-6610-switch/index.page ICX6610-48] 8x SFP+, 48x 1Gbps RJ45, 160Gbit stacked switch. Photo by [http://newsroom.brocade.com/Image-Gallery/Product-Images Brocade].]]
* [[AN!Cluster Recovery]] Tutorials
| style="text-align:center; vertical-align:middle;" | [[image:Brocade_icx6450-25_front_01.jpg|thumb|center|400px|Brocade [http://www.brocade.com/products/all/switches/product-details/icx-6430-and-6450-switches/index.page ICX6450-48] 4x SFP+, 24x 1Gbps RJ45, 40Gbit stacked switch. Photo by [http://newsroom.brocade.com/Image-Gallery/Product-Images Brocade].]]
 
|}
== Changing Fedora 19's terminal resolution ==
 
Fedora 19 defaulted to a high resolution terminal (minimal install, not a terminal app) and it wouldn't fit in my screen (KVM VM).
 
Change it temporarily;
 
<source lang="bash">
yum -y install fbset
fbset -xres 1024 -yres 768 -vxres 1024 -vyres 768 -depth 24
# Short form of the command above:
fbset -g 1024 768 1024 768 24
</source>
 
Change it permanently;
 
<source lang="bash">
echo "GRUB_GFXMODE=1024x768x24" >> /etc/default/grub
echo "GRUB_GFXPAYLOAD_LINUX=1024x768x24" >> /etc/default/grub
grub2-mkconfig -o /boot/grub2/grub.cfg
reboot
</source>
 
= COS Stuff =
 
* [[Leah - README COS Software]]
 
= Ongoing =
 
* [[Red Hat Cluster Service 3 Tutorial]]
* [[Xen vs. KVM Benchmark - Nov. 2010]]
 
= Sandbox =
 
I ask people questions here.
 
= Papers to write =
 
I took these off the front page until I am actually ready to start them.
 
* [[3+ Node CentOS5 Cluster + SoftSAN]] - How to build a 3+ Node Cluster using a home-brew iSCSI/SAN server on CentOS 5
* [[Setting Up Multilink PPP on Fedora 13]]
* [[Postfix + Postgrey + PostgreSQL on Debian|Postfix + Postgrey + PostgreSQL]] - Multi-domain, PgSQL authenticated mail server
 
= Code Dump =
 
== AVR from CLI ==
 
<source lang="bash">
perl -MDevice::SerialPort -e 'Device::SerialPort->new("/dev/ttyUSB0")->pulse_dtr_on(1000)'; \
./hardware/tools/avrdude -Chardware/tools/avrdude.conf -q -q -pm328p -cstk500v1 -P/dev/ttyUSB0 -b57600 -D -Uflash:w:/home/pekka/sketchbook/Blink2/applet/Blink2.hex;
</source>
 
== Mux/Demux ==
 
<source lang="text">
 
                                                                        <- Outputs ->
        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
        |   |   |   |   |   |  |  |  |  |  |  |  |  |  |  |                |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |
        -+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+-              -+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+-
S0 ----/                                                               \    S0 ----/                                                               \
S1 ---/                                                                 \    S1 ---/                                                                 \
S2 --/                                                                   \  S2 --/                                                                   \
S3 -/                                                                     \  S3 -/                                                                    \
  /_______________________________________________________________________\    /_______________________________________________________________________\
                                      |                                                                            |
                                      \-----------------------------------.   .------------------------------------/
                                                                          |  |
                                                                          -+---+-
                                                                    S4 -/       \
                                                                        /_________\
                                                                            |
                                                                          Input
S0-S5 = Source pins
</source>
 
= Research =
 
[[MediaWiki on Debian/PostgreSQL]]
 
[[MediaWiki on CentOS/MySQL]]
 
[[Bath Bookshelf]]
 
-----
 
= Main Links =
 
[[T400s]]
 
[[Node Assassin]]
 
[[Red Hat Clustering]]
 
[[Sample Xen 2-node Cluster Network Map]]
 
= MW Code Testing =
 
===== h5 heading =====
 
Le text.

Revision as of 21:12, 10 November 2016

 AN!Wiki :: Digimer

Me

Digimer <- about me.

This page below is my scratch pad.

Misc

A B C
D E F
G H I


Brocade ICX6610-48 8x SFP+, 48x 1Gbps RJ45, 160Gbit stacked switch. Photo by Brocade.
Brocade ICX6450-48 4x SFP+, 24x 1Gbps RJ45, 40Gbit stacked switch. Photo by Brocade.