User:Digimer: Difference between revisions

From Alteeve Wiki
Jump to navigation Jump to search
No edit summary
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;"
= Random Stuff In Random States =
| style="height:100px; width:100px; text-align:left;" | A
 
| style="height:100px; width:100px; text-align:center;" | B
* [[AN!Cluster Tutorial 2]]
| style="height:100px; width:100px; text-align:right;" | C
* [[AN!Cluster Tutorial 3]]
|- style="vertical-align:middle;"
* [[PPPower Server]] Tutorial.
| style="height:100px; width:100px; text-align:left;" | D
* [[Sheepdog on EL6]] Tutorial.
| style="height:100px; width:100px; text-align:center;" | E
* [[AN!Cluster Recovery]] Tutorials
| style="height:100px; width:100px; text-align:right;" | F
 
|- style="vertical-align:bottom;"
== Changing Fedora 19's terminal resolution ==
| style="height:100px; width:100px; text-align:left;" | G
 
| style="height:100px; width:100px; text-align:center;" | H
Fedora 19 defaulted to a high resolution terminal (minimal install, not a terminal app) and it wouldn't fit in my screen (KVM VM).
| style="height:100px; width:100px; text-align:right;" | I
 
|}
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 =
 
= Random =
 
<syntaxhighlight lang="text">
</syntaxhighlight>

Revision as of 21:02, 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