<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>autostart &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/autostart/</link>
	<description>Feed of posts on WordPress.com tagged "autostart"</description>
	<pubDate>Sat, 05 Dec 2009 00:06:02 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[(Auto) Start your engines!]]></title>
<link>http://jamesharnedy.wordpress.com/2009/12/02/auto-start-your-engines/</link>
<pubDate>Wed, 02 Dec 2009 10:36:03 +0000</pubDate>
<dc:creator>jamesharnedy</dc:creator>
<guid>http://jamesharnedy.wordpress.com/2009/12/02/auto-start-your-engines/</guid>
<description><![CDATA[Ran into this recently and thought it worth sharing. If you wish to build your app so that it can au]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ran into this recently and thought it worth sharing. If you wish to build your app so that it can auto start, as in execute without user intervention either on installation or device boot you can do so by following these instructions:</p>
<p><a href="http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800783/How_To_-_Allow_a_background_listener_to_detect_and_update_a_GUI_application.html?nodeid=827026&#38;vernum=0">How_To_-_Allow_a_background_listener_to_detect_and_update_a_GUI_application.html</a></p>
<p>However, what it fails to point out is that BlackBerry MAY NOT have all the system initialized when it runs your code on device boot. This leads to your app attempting a start routine, but blowing up as soon as it requires something from a subsystem not yet running. And it blows up pretty silently unless you go peering through the system logs with Alt LGLG on your device. The solution is as follows:</p>
<p><a href="http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/832062/How_To_-_Write_safe_initialization_code.html?nodeid=1487426&#38;vernum=0">How_To_-_Write_safe_initialization_code.html</a></p>
<p>Happy coding.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HA Clustering: KISS (and make up)]]></title>
<link>http://basraayman.com/2009/12/01/ha-clustering-kiss-and-make-up/</link>
<pubDate>Tue, 01 Dec 2009 10:19:59 +0000</pubDate>
<dc:creator>Bas Raayman</dc:creator>
<guid>http://basraayman.com/2009/12/01/ha-clustering-kiss-and-make-up/</guid>
<description><![CDATA[I like HA-clustering. I like to think that it is actually one of my specialties, and that I&#8217;m ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I like HA-clustering. I like to think that it is actually one of my specialties, and that I&#8217;m fairly good at it. <img src="http://basraayman.files.wordpress.com/2009/12/t-net-imagesa2cccbac-edff-4fc1-9976-ca49caae9ecf.jpg?w=15&#038;h=15" alt="A2CCCBAC-EDFF-4FC1-9976-CA49CAAE9ECF.jpg" border="0" height="15" width="15"></p>
<p>When I tried to explain what a cluster is, I came up with a very simple explanation that gives an idea of what a cluster can be without all the technical stuff. Just to give you this example:<br />
Try to think of a car manufacturer that has sites in two locations. Both are capable of building cars, but only one site is active at a time. Now you as a customer want to be able to communicate with this company no matter where they are working from. The way to do so would be a P.O. box. The active site just picks up the mail from this box and corresponds with you.<br />
Say that one site would burn down, the other would take over and correspond with you using this P.O. box, and to you as a customer the &#8220;failover&#8221; to the other site would not be noticeable.</p>
<p>I know this doesn&#8217;t cover all aspects, but it is very effective way to describe the very basics of a cluster. Anybody can imagine a P.O. box and someone driving to pick up the mail from that box.</p>
<p>Now, at the company where I work we tend to use three main products for our clustering needs. The Microsoft Cluster Service for our Windows platforms, We use a custom created product called PMC (very basic, two nodes with manual failover) and EMC Autostart. All offer a basic failover functionality of shared resources, and usually some means to stop and start things like databases and applications.</p>
<p>All of the people here seem to answer one thing when you ask them about high availability. &#8220;Install a cluster&#8221; seems to be the common delimiter. But when you ask them what they think when it comes to high availability you get all sorts of replies. Raging from &#8220;never down&#8221; or &#8220;100% reachable&#8221; to &#8220;guaranteed fast response times&#8221; or even the cloning of the runtime instance to other machines.</p>
<p>All are (in my opinion) (omit) valid responses, but there is one thing that I have learned over the past few years: The more complex the demands, the more stable your environment will be if you keep your design and implementation as simple as possible. Or in short &#8220;KISS&#8221;.</p>
<p><a href="http://basraayman.files.wordpress.com/2009/12/65cfd38a-7d2c-4d9d-b3d6-5cb5691167f0.jpg"><img src="http://basraayman.files.wordpress.com/2009/12/65cfd38a-7d2c-4d9d-b3d6-5cb5691167f0.jpg?w=157&#038;h=117" alt="Cost in relation to complexity" align="right" border="1" height="117" hspace="5" width="157"></a> Examples of popular requirements are &#8220;I want to monitor the response time of my database query&#8221;, or &#8220;The SAPgui interpretation time should be under $X&#8221;. Very much like in the uncertainty principle we can say that as soon as we start to measure the response times of the database, we are also going to have an impact on these response times. And the more complex the demands are, the more you need to take in to account and the higher the costs are going to be. Sun has a nice image displaying this, and it is a general image you will see when you are searching for HA-clustering.</p>
<p>My advice? Try to keep it down to a minimum.<br />
Rely on your hardware redundancy. You can use the N+1 principle there and usually save quite a bit. Also, make sure that the people who are working on the cluster know what they are doing. I&#8217;ve seen most errors here start off by either poorly defined monitors, too many monitors and user error (or PEBKAC).</p>
<p>In short, a cluster is alway complex and tailored toward the application you are trying to make highly available. Keep the design as simple as you can and gather people around you with knowledge of the application so you so can define a good set of working guidelines and monitors. All in all, a case of &#8220;KISS&#8221;. <img src="http://basraayman.files.wordpress.com/2009/12/t-net-imagesa3f6209c-2764-4bee-9047-c0c6d5f29ae5.jpg?w=15&#038;h=15" alt="A3F6209C-2764-4BEE-9047-C0C6D5F29AE5.jpg" border="0" height="15" width="15"></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[fluxbox - instalacja i podst. konfiguracja]]></title>
<link>http://trycode.wordpress.com/2009/11/21/xorg-instalacja-i-konfiguracja/</link>
<pubDate>Sat, 21 Nov 2009 17:49:58 +0000</pubDate>
<dc:creator>trym</dc:creator>
<guid>http://trycode.wordpress.com/2009/11/21/xorg-instalacja-i-konfiguracja/</guid>
<description><![CDATA[Zakładam, że masz zainstalowany sam system bazowy i nie korzystałeś jak do tej pory z innego menedże]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Zakładam, że masz zainstalowany sam system bazowy i nie korzystałeś jak do tej pory z innego menedżera okien, a więc nie masz zainstalowanego <em>xorga</em>. Jeśli jest inaczej, to możesz pominąć jego instalację.</p>
<h5>Instalacja tego co konieczne, a bynajmniej przydatne</h5>
<p>Wpierw instalujemy xorga:<br />
<code># aptitude install xterm xserver-xorg xfonts-base xbase-clients</code></p>
<p>Teraz czas na fluxboxa:<br />
<code># aptitude install fluxbox</code></p>
<p>Będziemy potrzebowali jeszcze menedżera logowania, ja polecam <em>nodm</em>:<br />
<code># aptitude install nodm</code></p>
<p>Aby <em>nodm</em> uruchamiał się automatycznie należy nieco edytować jego plik konfiguracyjny <em>/etc/default/nodm</em>. Interesują nas linie:</p>
<blockquote><p>NODM_ENABLED=false<br />
NODM_USER=root</p></blockquote>
<p><!--more--></p>
<p>zamieniamy je na:</p>
<blockquote><p>NODM_ENABLED=true<br />
NODM_USER=trym</p></blockquote>
<p>Oczywiście nic nie stoi na przeszkodzie aby zainstalować np. <em>kdm</em>, <em>gdm</em>, <em>xdm</em>, etc&#8230;</p>
<p>Teraz już możemy śmiało wykonać polecenie:<br />
<code>$ startx</code></p>
<p>No i jesteśmy w naszych okienkach (tzw. <em>xach</em>). Widok, który ujrzymy wygląda jak na zrzucie poniżej.</p>
<p><a href="http://trycode.wordpress.com/files/2009/11/2009-11-21-190138_1280x800_scrot.png"><img class="aligncenter size-medium wp-image-133" title="2009-11-21-190138_1280x800_scrot" src="http://trycode.wordpress.com/files/2009/11/2009-11-21-190138_1280x800_scrot.png?w=300" alt="" width="300" height="225" /></a></p>
<p>Niektórzy użytkownicy mogą być nieco zaskoczeni faktem, iż nie mamy ustawionego tła pulpitu (tapety) czy żadnych ikon. Na pociesznie jednak dodam, że w tym cały urok Fluxboxa. Konfigurujemy go wedle własnego uznania &#8211; nic nie jest z góry narzucane.</p>
<p>Dla wygody zainstalujemy sobie jeszcze menedżer plików i motyw ikon:<br />
<code>aptitude install pcmanfm lxappearance</code></p>
<p><em>Lxappearance</em> jest w tym wypadku może nie niezbędny, ale wskazany. Uruchamiamy go i wybieramy motyw. Dzięki temu unikniemy komunikatu o błędzie przy uruchamianiu <em>pcmanfm</em>. Pamiętamy, iż należy motyw ustawić zarówno dla zwykłego użytkownika jak i root &#8212; poprzez uruchomienie programu z poziomu obydwu użytkowników. </p>
<h5>Ustawienie tła pulpitu</h5>
<p>Instalujemy aplikację <em>feh</em>:<br />
<code># aptitude install feh</code></p>
<p>Tworzymy plik, który będzie odpowiadał nam za uruchamianie pewnych programów przy starcie i nadajemy odpowiednie uprawnienia:<br />
<code>$ touch /home/trym/.fluxbox/autostart<br />
$ chmod +x /home/trym/.fluxbox/autostart</code></p>
<p>w nowo utworzonym pliku wpisujemy:</p>
<blockquote><p>#!/bin/bash<br />
fbsetbg -f /home/trym/download/tapety/aktualna_tap.jpg &#38;
</p></blockquote>
<p><em>/home/trym/download/tapety/aktualna_tap.jpg</em> &#8211; jest to ścieżka do pliku tła. Ponadto pamiętamy o znaku <em>&#38;</em> na końcu wiersza.</p>
<p>W pliku <em>/home/trym/.fluxbox/init</em> odnajdujemy linię:</p>
<blockquote><p>session.screen0.rootCommand:    </p></blockquote>
<p>i zamieniamy na:</p>
<blockquote><p>session.screen0.rootCommand:    /home/trym/.fluxbox/autostart</p></blockquote>
<p>Restartujemy Fluxboxa (PPM -&#62; Restart) i już mamy wybraną tapetę w trybie pełnoekranowym.</p>
<h5>Ikony na pulpicie</h5>
<p>Instalacja:<br />
<code># aptitude install idesk</code></p>
<p>Tworzymy odpowiednie foldery i plik:<br />
<code>$ mkdir /home/trym/.idekstop<br />
$ mkdir /home/trym/.idesktop/icons<br />
$ vim /home/trym/.ideskrc</code></p>
<p>Utworzony plik wypełniamy treścią:</p>
<blockquote><p>table Config<br />
  FontName: sans<br />
  FontSize: 8<br />
  FontColor: #aeb3bf<br />
  Locked: false<br />
  Transparency: 0<br />
  HighContrast: true<br />
  Shadow: true<br />
  ShadowColor: #000000<br />
  ShadowX: 1<br />
  ShadowY: 2<br />
  Bold: false<br />
  ClickDelay: 300<br />
  IconSnap: true<br />
  SnapWidth: 10<br />
  SnapHeight: 10<br />
  SnapOrigin: BottomRight<br />
  SnapShadow: true<br />
  SnapShadowTrans: 200<br />
  CaptionOnHover: false<br />
end<br />
table Actions<br />
  Lock: control right doubleClk<br />
  Reload: middle doubleClk<br />
  Drag: left hold<br />
  EndDrag: left singleClk<br />
  Execute[0]: left singleClk<br />
  Execute[1]: right singleClk<br />
end
</p></blockquote>
<p>Umieszczamy interesującą nas ikonę z rozszerzeniem <em>.png</em>, <em>.jpg</em> lub <em>.gif</em> w katalogu <em>/home/trym/.idesktop/icons</em>. Dla tego przykładu niech zawiera ona nazwę <em>home.png</em>. Jeśli chcesz skorzystać z ikon typowych dla zainstalowanych programów to zajrzyj do katalogu <em>/usr/share/applications</em>, bardzo prawdopodobne, że znajdziesz tam właściwą ikonę.</p>
<p>Dla każdej ikony tworzymy odpowiedni plik konfiguracyjny:<br />
<code>$ vim /home/trym/.idesktop/home.lnk</code></p>
<p>Uzupełniamy:</p>
<blockquote><p>table Icon<br />
  Caption: trym<br />
  Command: pcmanfm /home/trym<br />
  Icon: /home/trym/.idesktop/icons/home.png<br />
  Width: 48<br />
  Height: 48<br />
  X: 39<br />
  Y: 9<br />
end
</p></blockquote>
<p>Na koniec dopisujemy do autostartu <em>ideska</em>, wydając polecenie:<br />
<code>$ echo 'idesk &#38;'&#62;&#62;/home/trym/.fluxbox/autostart</code></p>
<h5>Wygodne wyłączanie komputera</h5>
<p>Instalujemy kolejne pakiety:<br />
<code># aptitude install sudo gtkdialog</code></p>
<p>Następnie edytujemy plik <em>/etc/sudoers/</em> wydając polecenie:<br />
<code># visudo</code></p>
<p>I dopisujemy na końcu pliku:</p>
<blockquote><p>User_Alias USERS=trym<br />
Cmnd_Alias SHUTDOWN=/sbin/shutdown<br />
Cmnd_Alias HALT=/sbin/halt<br />
Cmnd_Alias REBOOT=/sbin/reboot</p>
<p>USERS ALL=NOPASSWD:SHUTDOWN<br />
USERS ALL=NOPASSWD:HALT<br />
USERS ALL=NOPASSWD:REBOOT</p></blockquote>
<p>Tworzymy katalog, pobieramy odpowiedni plik:<br />
<code>$ mkdir ~/download<br />
$ cd ~/download<br />
$ wget http://hag-linux.eu.org/deb/pool/main/h/hag-exit-fluxbox/hag-exit-fluxbox_0.3-1_all.deb</code></p>
<p>Instalujemy pobrany pakiet:<br />
<code># dpkg -i hag-exit-fluxbox_0.3-1_all.deb</code></p>
<p>Tworzymy ikonę zgodnie z opisem wyżej (<em>Ikony na pulpicie</em>) jako polecenie podając:</p>
<blockquote><p>hag-exit-fluxbox</p></blockquote>
<p>Po wywołaniu aktywatora (ikony) ukaże nam się taki widok:</p>
<p><a href="http://trycode.wordpress.com/files/2009/11/2009-11-22-233850_1280x800_scrot1.png"><img src="http://trycode.wordpress.com/files/2009/11/2009-11-22-233850_1280x800_scrot1.png?w=150" alt="" title="2009-11-22-233850_1280x800_scrot" width="150" height="73" class="aligncenter size-thumbnail wp-image-219" /></a></p>
<p>Niektóre opcje mogą być niedostępne. Na przykład aby móc hibernować peceta zainstalujmy pakiet <em>hibernate</em>. </p>
<h5>Ustawienie godziny i trybu wyświetlania zegara</h5>
<p>Tryb wyświetlania 12h lub 24h ustawimy najeżdżając na zegar kursorem, klikając prawym przyciskiem myszy i wybierając odpowiednią opcję. Podobnie sprawa wygląda z tym jak szczegółowy czas chcemy by był pokazywany (<em>HH:MM</em> czy może <em>HH:MM:SS</em>). </p>
<p>Jeśli chodzi o ustawienie godziny to należy wydać odpowiednią komendę z konsoli, przykładowo:<br />
<code># date -s 23:05</code></p>
<h5>Skrót &#8220;pokaż pulpit&#8221;</h5>
<p>Odczytujemy kombinację klawiszy za pomocą np. <em>xbindkeys -k</em>, gdzie otrzymamy przykładowo:</p>
<blockquote><p>&#8220;(Scheme function)&#8221;<br />
    m:0&#215;80 + c:40<br />
    Mod5 + d</p></blockquote>
<p>Nas interesuje jedynie zapis <em>Mod5 + d</em> i należy go zapamiętać.</p>
<p>Edytujemy plik:<br />
<code>$ vim /home/trym/.fluxbox/keys</code></p>
<p>wpisując do niego (na końcu) między innymi wcześniej zapamiętany ciąg:</p>
<blockquote><p>Mod5 d :ShowDesktop</p></blockquote>
<p>Restart Fluxboxa i od tej pory pod kombinacją klawiszy <em>prawy_Alt + d</em> (lub inną, którą podaliśmy) mamy funkcję wyświetlającą &#8220;czysty&#8221; pulpit.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Como desabilitar programas que inicializam com o Windows]]></title>
<link>http://victorwestmann.wordpress.com/2009/09/24/como-desabilitar-programas-que-inicializam-com-o-windows/</link>
<pubDate>Thu, 24 Sep 2009 23:27:38 +0000</pubDate>
<dc:creator>Victorino</dc:creator>
<guid>http://victorwestmann.wordpress.com/2009/09/24/como-desabilitar-programas-que-inicializam-com-o-windows/</guid>
<description><![CDATA[Quando voce liga o computador carrega um monte de programa junto com o Windows? Programas que você n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="margin-left:42px;margin-right:42px;"><strong><strong><span style="font-weight:normal;">Quando voce liga o computador carrega um monte de programa junto com o Windows? Programas que você não quer? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </span></strong><br />
</strong></p>
<p style="margin-left:42px;margin-right:42px;"><strong>Solução1:</strong></p>
<ol>
<li>Clique no botão ‘<strong>Iniciar</strong>’ <strong>&#62;</strong> ‘<strong>Executar…</strong>’ &#62; digite na caixa de texto ‘<strong>msconfig</strong>’ (sem os apóstrofes, claro) e clique em ‘<strong>ok</strong>’.</li>
<li>Procure pela aba ‘<strong>Inicializar</strong>’ e desmarque tudo aquilo que você não quiser que carregue na inicialização do seu sistema.</li>
<li>Clique em ‘<strong>Fechar</strong>’. Um aviso aparecerá dizendo para reiniciar o seu computador, clique em ‘<strong>Sair sem reiniciar</strong>’ e pronto! Da próxima vez que você ligar o seu PC estes programas não serão carregados automaticamente.</li>
</ol>
<p style="margin-left:42px;margin-right:42px;"><strong>Solução 2 (tosca):</strong></p>
<ol>
<li>Procure por arquivos(na verdade atalhos) que estejam dentro da pasta &#8216;<strong>Inicializar</strong>&#8216; (que fica em <strong>&#8216;</strong><strong>Iniciar&#8217; &#62; &#8216;Programas&#8217; &#62; &#8216;Inicializar</strong><strong>&#8216;</strong>).</li>
<li>Remova os programas que você não quer que se inicializam sozinhos (ou que não deveriam estar lá mesmo).</li>
<li>Pronto! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 - Usuwanie programów z autostartu]]></title>
<link>http://blaast.wordpress.com/2009/09/10/windows-7-usuwanie-programow-z-autostartu/</link>
<pubDate>Thu, 10 Sep 2009 10:34:41 +0000</pubDate>
<dc:creator>blaast</dc:creator>
<guid>http://blaast.wordpress.com/2009/09/10/windows-7-usuwanie-programow-z-autostartu/</guid>
<description><![CDATA[Często zdarza się tak, że po zainstalowaniu jakiegoś programu, jego wpisy lądują w autostarcie. Co j]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Często zdarza się tak, że po zainstalowaniu jakiegoś programu, jego wpisy lądują w autostarcie. Co jednak zrobić jeśli nie chcemy, aby uruchamiał się on razem z systemem? Najprościej udać się do Menu start -&#62; Autostart i wyrzucić zbędne programy. Co cwańsi programiści nie umieszczają jednak tam swoich produktów, a mimo to Windows ładuje je przy starcie. Wtedy do akcji wkracza narzędzie wbudowane w system &#8211; msconfig.</p>
<ol>
<li>Wchodzimy w menu Start -&#62; Uruchom</li>
<li>Wpisujemy
<pre>msconfig</pre>
<p>i wciskamy Enter</li>
<li>W oknie Konfiguracja systemu przechodzimy na kartę Uruchamianie</li>
<li>Znajdujemy na liście wpis programu który chcemy wyłączyć i odznaczamy go po lewej stronie</li>
<li>Na koniec wciskamy OK</li>
</ol>
<p>Jeszcze jedno: trzeba uważać co się wyłącza, ale o tym nie muszę chyba wspominać <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Dla Windows 7 na podstawie porady Vistomaniaka008 z:  <a href="http://www.vista.pl/porady/229_usuwanie_zbednych_wpisow_z_autostartu_windows.html">http://www.vista.pl</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to Remove Autostart Programs That Boot Up With Windows ]]></title>
<link>http://mycomputerworks.wordpress.com/2009/09/04/how-to-remove-autostart-programs-that-boot-up-with-windows/</link>
<pubDate>Fri, 04 Sep 2009 17:07:32 +0000</pubDate>
<dc:creator>davidross17</dc:creator>
<guid>http://mycomputerworks.wordpress.com/2009/09/04/how-to-remove-autostart-programs-that-boot-up-with-windows/</guid>
<description><![CDATA[Often, programs configure themselves to run in the background so that they appear to start quickly w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Often, programs configure themselves to run in the background so that they appear to start quickly when needed. Some of these programs show an icon on your taskbar to let you know that they&#8217;re running, while others are completely hidden. These autostart programs probably won&#8217;t noticeably slow down your computer as it starts up, but they will steal away trace amounts of memory and processing time as your computer runs.</p>
<p>Windows XP comes with the System Configuration tool (Msconfig.exe), an excellent way to manage the startup process. To start it:</p>
<p>1. Click Start, click Run, type Msconfig, and then press Enter.<br />
 <br />
2. On the Startup tab, you&#8217;ll see a list of all the programs and processes that are set to run when Windows XP loads.</p>
<p><img class="alignnone" title="Windows Auto Start Programs" src="http://mywindowscomputerworks.com/images/stories/remove_autostart.jpg" alt="" width="365" height="233" /></p>
<p> <br />
3. Speed up your overall start time by clearing the check box next to any item you think you don&#8217;t need.<br />
 <br />
4. Click Apply, and then restart your computer for the changes to take effect.</p>
<p>Many autostart entries are important parts of Windows XP, including Userinit.exe and Explorer.exe. So you should not simply delete everything that you don&#8217;t recognize.</p>
<p>For example, Figure 5 shows Autoruns revealing a file called nwiz.exe that is set to start automatically. If you&#8217;d like to keep this functionality, do not delete it. If your not comfortable doing this or are unsure about what you can delete, call us at 800-483-0645 to talk with a representitve about how we can help you.</p>
<p><strong>Our Computer Help Desk articles are for informational purposes only and are not intended to replace the advice and work of a professional technician. Many computer issues are complicated to fix yourself and can result in further problems with your computer. To have your computer fixed quickly and accurately, please call us today at 800-483-0645.</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Autoruns]]></title>
<link>http://01vlatce.wordpress.com/2009/09/04/autoruns/</link>
<pubDate>Fri, 04 Sep 2009 11:15:24 +0000</pubDate>
<dc:creator>Raging Demon</dc:creator>
<guid>http://01vlatce.wordpress.com/2009/09/04/autoruns/</guid>
<description><![CDATA[При инсталирање на разни програми во системот многу од нив се запишуваат во фолдерот за автоматско п]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>При инсталирање на разни програми во системот многу од нив се запишуваат во фолдерот за автоматско подигање или во регистрите за автоматски да се вклучуваат со секое вклучување на Windows-от, а не ни требаат.<br />
Тоа доведува до успорено подигање на Windows-то, користење на повеке РАМ меморија, поголема искористеност на процесорот, послаби системски перформанси&#8230;<br />
<a href="http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx" target="_blank">Autoruns</a> е програм кој ке ве ослободи од непотребните програми кои се стартуваат со самото стартување на Windows.<br />
Тој е бесплатен за превземање и откако ке го вклучите ке ви ги покаже детално сите програми што се стартуваат со Windows-от заедно со нивната патека каде се наогаат.<br />
Со негова помош можете да ги избришете и да го ослободите системот од додатно оптеретување.<br />
Сепак, внимателно треба да оддберете кој програми ке ги избришете, за да не избришете некој системски фајл или некој друг важен фајл.<br />
Табот Logon е најсигурниот таб од каде што можете да ги бришете програмите. Па затоа разгледајте го тој таб и слободно избришете го тоа што не ви треба.</p>
<p>Со Autoruns можете да бришете и adware, spyware и други малициозни програми што се подигаат со Windows-от.<br />
Нив можете да ги избришете така што ке ја видите нивната патека каде се сместени, на пример C:\Program files и следејки ја таа патека ке го избришете малициозниот програм.<br />
<strong>Внимавајте: Со бришење на програмот од Autoruns не го бришете извршниот .exe фајл на непотребниот програм, туку само го оневозможувате да се стартува со Windows.</strong><br />
За отстранување на малициозни програми како adware, spyware и др. треба да ја видите патеката каде се наогаат и да ги избришете физички од хард дискот.</p>
<p><a href="http://01vlatce.wordpress.com/files/2009/09/n.jpg" target="_blank"><img class="alignnone size-medium wp-image-59" title="Autoruns 9.53" src="http://01vlatce.wordpress.com/files/2009/09/n.jpg?w=300" alt="Autoruns 9.53" width="300" height="299" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Opóźniony autostart programu]]></title>
<link>http://desant87.wordpress.com/2009/06/30/opozniony-autostart-programu/</link>
<pubDate>Tue, 30 Jun 2009 17:39:35 +0000</pubDate>
<dc:creator>desant87</dc:creator>
<guid>http://desant87.wordpress.com/2009/06/30/opozniony-autostart-programu/</guid>
<description><![CDATA[W prawdzie w ubuntu możemy sprawić by programy od razu startowały nam z uruchamiającym się systemem ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>W prawdzie w ubuntu możemy sprawić by programy od razu startowały nam z uruchamiającym się systemem jednak nie zawsze to na dobre nam wyjdzie, przykładem jest tu kadu które po starcie z systemem posiadało błąd &#8211; nie pojawiała się ikona w trayu.<br />
Jak do tego sie zabrać?<br />
<strong>Start programu z systemem:</strong></p>
<p>system -&#62; preferencje -&#62; programy startowe</p>
<p>następnie: dodaj<br />
wpisujemy:<br />
nazwe<br />
położenie lub komendę jaką uruchamia się program</p>
<p><strong>JEŻELI CHCEMY BY PROGRAM Z OPÓŹNIENIEM SIĘ URUCHAMIAŁ </strong><br />
należy utworzyć plik tekstowy w folderze użytkownika (home/tu_twoja_nazwa_uzytkownika) z następującymi danymi:</p>
<blockquote><p>#!/bin/bash<br />
sleep liczba_sekund_po_jakiej_ma_się_włączyć_program &#38;&#38; polecenie_jakim_włącza_się_program_w_terminalu</p></blockquote>
<p>przykład:</p>
<blockquote><p>#!/bin/bash<br />
sleep 22 &#38;&#38; kadu</p></blockquote>
<p>Jeżeli nie znamy polecenia jakim włącza się program wchodzimy do<br />
system -&#62; preferencje -&#62; menu główne klikamy tam na program w celu zaznaczenia go, potem na właściwości i mamy to w polu polecenie (jednak nie zawsze to będzie tak działało, bo może być tam podane położenie).</p>
<p>Następnie po utworzeniu tego pliku musimy nadać mu prawa do uruchamiania więc wydajemy komendę:</p>
<p>cd /home/nazwa_użytkownika<br />
sudo chmod +x nazwa_naszego_pliku</p>
<p>Potem wyłączamy terminal:</p>
<p>system -&#62; preferencje -&#62; programy startowe</p>
<p>następnie: dodaj<br />
wpisujemy:<br />
nazwe<br />
położenie lub komendę jaką uruchamia się program</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hack Nokia N82 v31.0.016 ]]></title>
<link>http://mobiman.wordpress.com/2009/06/24/hack-nokia-n82-v31-0-016/</link>
<pubDate>Wed, 24 Jun 2009 22:23:14 +0000</pubDate>
<dc:creator>mobiman</dc:creator>
<guid>http://mobiman.wordpress.com/2009/06/24/hack-nokia-n82-v31-0-016/</guid>
<description><![CDATA[* Sign and install MapDrives v1.00 DiskAdmin Unsigned.sis* Install Jbak TaskMan 1.00* Copy MapDrives]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:Verdana;font-size:12px;"></p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;"><img src="http://www.symbian-guru.com/wp-content/uploads/2008/09/nokia_n82_gets_feature.jpg" alt="" /><img src="http://www.symbian-guru.com/wp-content/uploads/2008/09/nokia_n82_gets_feature.jpg" alt="" /><img src="http://www.symbian-guru.com/wp-content/uploads/2008/09/nokia_n82_gets_feature.jpg" alt="" /></p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;">* Sign and install MapDrives v1.00 DiskAdmin Unsigned.sis<br style="margin:0;padding:0;" />* Install Jbak TaskMan 1.00<br style="margin:0;padding:0;" />* Copy MapDrives.txt to E:\<br style="margin:0;padding:0;" />* Copy your installserver.exe to E:/Hack/sys/bin/installserver.exe<br style="margin:0;padding:0;" />* Start JBak Taskman software and press # key -&#62; search &#38;amp; select MapDrives -&#62; Press More -&#62; Programs Rule -&#62; check &#38;quot;AutoStart&#38;quot; -&#62; OK) (also can autostart with the help of powerboot)<br style="margin:0;padding:0;" />* Restart your phone.<br style="margin:0;padding:0;" />* Uninstall MapDrives and install MapDrive_Y (for N82, N95, N95-8GB, E71 (all phones with Y: drive), otherwise choose MapDrive_H if you have H: drive) and then start the app.<br style="margin:0;padding:0;" />* Install Modo and copy Installserver.exe to c:/sys/bin/ and restart the phone.<br style="margin:0;padding:0;" />* You can remove Mapdrives and Jbak Tasman at this point.</p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;text-align:center;margin:0;padding:5px 0;">his method also works (No need to restart the phone):</p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;">* Install Mapdrives Diskadmin 1.00</p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;"><strong><span style="margin:0;padding:0;">* Type a <span style="margin:0;padding:0;">text</span><span> </span>file like this:</span></strong></p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;"><strong>V=E:\Hack\<br style="margin:0;padding:0;" />.</strong></p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;"><span style="margin:0;padding:0;">* save the <span style="text-decoration:underline;margin:0;padding:0;">text</span><span> </span>file as Mapdrives.txt and copy it to E:\</span><br style="margin:0;padding:0;" />* Copy the installserver.exe for your phone to E:\Hack\sys\bin\<br style="margin:0;padding:0;" />* Run Mapdrives<br style="margin:0;padding:0;" />* Verify that V drive is visible usign any filebrowser<br style="margin:0;padding:0;" />* Install Secman or ROMPatcher (to turn caps off, caps off works on some mobiles not all) (If you restart, re run Mapdrives)<br style="margin:0;padding:0;" />* If u cant turn caps off, then install Modo and copy installserver.exe to C:\sys\bin or Y:\sys\bin<br style="margin:0;padding:0;" />* You can remove Mapdrives at this point<br style="margin:0;padding:0;" />don’t forget tanks button</p>
<p style="font-family:Verdana;font-style:normal;font-variant:normal;font-weight:normal;font-size:12px;line-height:17px;color:#666666;margin:0;padding:5px 0;"><a href="http://www.ziddu.com/download/5330055/Hackn82.rar.html">Downlaod</a></p>
<p></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Nokia N82 v31.0.016 Hack]]></title>
<link>http://saboor38.wordpress.com/2009/06/24/nokia-n82-v31-0-016-hack/</link>
<pubDate>Wed, 24 Jun 2009 19:23:46 +0000</pubDate>
<dc:creator>saboor38</dc:creator>
<guid>http://saboor38.wordpress.com/2009/06/24/nokia-n82-v31-0-016-hack/</guid>
<description><![CDATA[The method: * Sign and install MapDrives v1.00 DiskAdmin Unsigned.sis * Install Jbak TaskMan 1.00 * ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="alignnone" title="n82" src="http://www.techgadgets.in/images/nokia-n82-cameraphone.jpg" alt="" width="320" height="350" /></p>
<p style="text-align:center;"><span><span style="text-decoration:underline;">The method</span>:</span></p>
<p>* Sign and install MapDrives v1.00 DiskAdmin Unsigned.sis<br />
* Install Jbak TaskMan 1.00<br />
* Copy MapDrives.txt to E:\<br />
* Copy your installserver.exe to E:/Hack/sys/bin/installserver.exe<br />
* Start JBak Taskman software and press # key -&#62; search &#38;amp; select MapDrives -&#62; Press More -&#62; Programs Rule -&#62; check &#38;quot;AutoStart&#38;quot; -&#62; OK) (also can autostart with the help of powerboot)<br />
* Restart your phone.<br />
* Uninstall MapDrives and install MapDrive_Y (for N82, N95, N95-8GB, E71 (all phones with Y: drive), otherwise choose MapDrive_H if you have H: drive) and then start the app.<br />
* Install Modo and copy Installserver.exe to c:/sys/bin/ and restart the phone.<br />
* You can remove Mapdrives and Jbak Tasman at this point.</p>
<p style="text-align:center;">his method also works (No need to restart the phone):</p>
<p>* Install Mapdrives Diskadmin 1.00</p>
<p><strong><span>* Type a <span>text</span> file like this:</span></strong></p>
<p><strong>V=E:\Hack\<br />
.</strong></p>
<p><span>* save the <span style="text-decoration:underline;">text</span> file as Mapdrives.txt and copy it to E:\</span><br />
* Copy the installserver.exe for your phone to E:\Hack\sys\bin\<br />
* Run Mapdrives<br />
* Verify that V drive is visible usign any filebrowser<br />
* Install Secman or ROMPatcher (to turn caps off, caps off works on some mobiles not all) (If you restart, re run Mapdrives)<br />
* If u cant turn caps off, then install Modo and copy installserver.exe to C:\sys\bin or Y:\sys\bin<br />
* You can remove Mapdrives at this point<br />
don’t forget tanks button</p>
<p style="text-align:center;"><!--more--><strong>Download Link</strong>:<a href="http://www.ziddu.com/download/5328630/New_hack_MobilesHouse.rar.html"> Nokia N82 Hack</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Nokia N82 v31.0.016 Hack]]></title>
<link>http://mobileshouse.wordpress.com/2009/06/24/nokia-n82-v31-0-016-hack/</link>
<pubDate>Wed, 24 Jun 2009 19:23:11 +0000</pubDate>
<dc:creator>saboor38</dc:creator>
<guid>http://mobileshouse.wordpress.com/2009/06/24/nokia-n82-v31-0-016-hack/</guid>
<description><![CDATA[The method: * Sign and install MapDrives v1.00 DiskAdmin Unsigned.sis * Install Jbak TaskMan 1.00 * ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="alignnone" title="n82" src="http://www.techgadgets.in/images/nokia-n82-cameraphone.jpg" alt="" width="320" height="350" /></p>
<p style="text-align:center;"><span><span style="text-decoration:underline;">The method</span>:</span></p>
<p>* Sign and install MapDrives v1.00 DiskAdmin Unsigned.sis<br />
* Install Jbak TaskMan 1.00<br />
* Copy MapDrives.txt to E:\<br />
* Copy your installserver.exe to E:/Hack/sys/bin/installserver.exe<br />
* Start JBak Taskman software and press # key -&#62; search &#38;amp; select MapDrives -&#62; Press More -&#62; Programs Rule -&#62; check &#38;quot;AutoStart&#38;quot; -&#62; OK) (also can autostart with the help of powerboot)<br />
* Restart your phone.<br />
* Uninstall MapDrives and install MapDrive_Y (for N82, N95, N95-8GB, E71 (all phones with Y: drive), otherwise choose MapDrive_H if you have H: drive) and then start the app.<br />
* Install Modo and copy Installserver.exe to c:/sys/bin/ and restart the phone.<br />
* You can remove Mapdrives and Jbak Tasman at this point.</p>
<p style="text-align:center;">his method also works (No need to restart the phone):</p>
<p>* Install Mapdrives Diskadmin 1.00</p>
<p><strong><span>* Type a <span>text</span> file like this:</span></strong></p>
<p><strong>V=E:\Hack\<br />
.</strong></p>
<p><span>* save the <span style="text-decoration:underline;">text</span> file as Mapdrives.txt and copy it to E:\</span><br />
* Copy the installserver.exe for your phone to E:\Hack\sys\bin\<br />
* Run Mapdrives<br />
* Verify that V drive is visible usign any filebrowser<br />
* Install Secman or ROMPatcher (to turn caps off, caps off works on some mobiles not all) (If you restart, re run Mapdrives)<br />
* If u cant turn caps off, then install Modo and copy installserver.exe to C:\sys\bin or Y:\sys\bin<br />
* You can remove Mapdrives at this point<br />
don’t forget tanks button</p>
<p style="text-align:center;"><!--more--><strong>Download Link</strong>:<a href="http://www.ziddu.com/download/5328630/New_hack_MobilesHouse.rar.html"> Nokia N82 Hack</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[EF StartUp Manager Lets You Access Smooth And Stable System Startup !]]></title>
<link>http://vhxnblog.wordpress.com/2009/04/16/ef-startup-manager-lets-you-access-smooth-and-stable-system-startup/</link>
<pubDate>Thu, 16 Apr 2009 03:49:49 +0000</pubDate>
<dc:creator>vhxnblog</dc:creator>
<guid>http://vhxnblog.wordpress.com/2009/04/16/ef-startup-manager-lets-you-access-smooth-and-stable-system-startup/</guid>
<description><![CDATA[If you look at this name, you can easily know that it is used for cleaning startup. It can bring enh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you look at this name, you can easily know that it is used for <a href="http://www.vhxn.com/net-framework-clean-up-tool-cleans-up-and-removes-any-net-framework/">cleaning startup</a>. It can bring enhanced startup for your system and it can remove all the possible constraints of your startup. <a href="http://www.vhxn.com/how-to-create-custom-views-for-vista-error-logs/">Moreover</a>, it is easy to handle with complete control of applications each time our system starts. This tool allows you to add, remove or<a href="http://www.vhxn.com/internet-alarm-ready-for-conficker-virus/"> disable</a> any item temporarily in the startup.</p>
<p><a href="http://www.vhxn.com/how-to-solve-just-in-time-debugging-error-in-windows-start-up/">Click to fix Just In Time Debugging Error in Startup</a></p>
<p><a href="http://www.vhxn.com"><img class="alignnone size-full wp-image-8128" title="ef_startupmanager" src="http://www.vhxn.com/wp-content/uploads/2009/04/ef_startupmanager.jpg" alt="ef_startupmanager" width="416" height="313" /></a></p>
<p><!--more--><br />
In <a href="http://www.vhxn.com/use-startup-manager-to-edit-boot-menu-in-ubuntu/">additional</a> it has the capability to detect adware and spyware that tend to make your <a href="http://www.vhxn.com/how-to-remove-trojan-virus-kaspersky-virus-removal-tool/">system slow</a>. This is compatible with Windows 95 or Windows NT 4.0 or higher with support to<a href="http://www.vhxn.com/how-to-speed-up-download-in-firefox-without-download-manager/"> multiple</a> languages.</p>
<p>Click to<a href="http://www.freedownloadscenter.com/Utilities/System_Maintenance_and_Repair_Utilities/EF_StartUp_Manager_Screenshot.html"> SOURCE and DOWNLOAD</a></p>
<p>[ <a href="http://www.vhxn.com">More</a> ]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Autostarting applications with awesome 3.x]]></title>
<link>http://neenaoffline.wordpress.com/2009/04/11/autostarting-applications-with-awesome-3x/</link>
<pubDate>Sat, 11 Apr 2009 20:15:07 +0000</pubDate>
<dc:creator>neenaoffline</dc:creator>
<guid>http://neenaoffline.wordpress.com/2009/04/11/autostarting-applications-with-awesome-3x/</guid>
<description><![CDATA[Some discussion on ##linux-india with zeroXzero and Hobbes` led to this -- Somewhere at the top auto]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Some discussion on ##linux-india with zeroXzero and Hobbes` led to this</p>
<p><code><br />
-- Somewhere at the top<br />
autostart_apps =<br />
{<br />
    "stalonetray",<br />
    "anyotherapps"<br />
}<br />
-- Somewhere at the bottom<br />
-- Autostarting all apps in autostart_apps<br />
for appno=1, #autostart_apps do<br />
    awful.util.spawn(autostart_apps[appno])<br />
end<br />
</code></p>
<p>put the above in your awesome rc.lua configuration.<br />
your need the awful module, which is most probably loaded.</p>
<p><code><br />
require("awful")<br />
</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cómo ejecutar un puto programa al inicio de sesión con KDE]]></title>
<link>http://putolinux.wordpress.com/2009/03/10/como-ejecutar-programas-al-inicio-con-kde/</link>
<pubDate>Tue, 10 Mar 2009 09:32:02 +0000</pubDate>
<dc:creator>pragmart</dc:creator>
<guid>http://putolinux.wordpress.com/2009/03/10/como-ejecutar-programas-al-inicio-con-kde/</guid>
<description><![CDATA[Fácil. 1. En el menú K elijo Ejecutar y escribo lo siguiente: $HOME/.kde/Autostart/ 2. Clic en el bo]]></description>
<content:encoded><![CDATA[Fácil. 1. En el menú K elijo Ejecutar y escribo lo siguiente: $HOME/.kde/Autostart/ 2. Clic en el bo]]></content:encoded>
</item>
<item>
<title><![CDATA[Start programu z systemem - autostart]]></title>
<link>http://desant87.wordpress.com/2009/03/08/start-programu-z-systemem-autostart/</link>
<pubDate>Sun, 08 Mar 2009 18:43:25 +0000</pubDate>
<dc:creator>desant87</dc:creator>
<guid>http://desant87.wordpress.com/2009/03/08/start-programu-z-systemem-autostart/</guid>
<description><![CDATA[Wiele osób chciało by aby jakaś aplikacja uruchamiała się z systemem. Najprostszym na to sposobem je]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wiele osób chciało by aby jakaś aplikacja uruchamiała się z systemem. Najprostszym na to sposobem jest wejście w menu:<br />
system -&#62; preferencje -&#62; sesje<br />
następnie w polu polecenie wpisanie bez sudo polecenia, np: kadu. Sprawi to że kadu będzie nam startowało wraz z linuxem <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows-Start beschleunigen]]></title>
<link>http://useitfree.wordpress.com/2009/03/04/windows-start-beschleunigen/</link>
<pubDate>Wed, 04 Mar 2009 15:48:19 +0000</pubDate>
<dc:creator>use-IT</dc:creator>
<guid>http://useitfree.wordpress.com/2009/03/04/windows-start-beschleunigen/</guid>
<description><![CDATA[Beim Hochfahren von Windows werden einige Programme mit gestartet, die sich (mit oder ohne Zustimmun]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Beim Hochfahren von Windows werden einige Programme mit gestartet, die sich (mit oder ohne Zustimmung des Users) im Autostart eingetragen haben. Wenn diese Programme alle gleichzeitig ausgeführt werden, verlangsamt das natürlich den Start-Prozess des Systems. Deshalb kann es sinnvoll sein, Software die man nicht unbedingt immer benötigt, aus dem Autostart zu entfernen. Die verbleibenden Einträge werden aber immer noch gleichzeitig ausgeführt. Sinnvoller wäre es, die Startzeit und -Reihenfolge selbst festlegen zu können.</p>
<p>Die Freeware <a href="http://www.r2.com.au/software.php?page=2&#38;show=startdelay" target="_blank">Startup Delayer</a> bietet eben diese Möglichkeiten. In einem übersichtlichen Interface werden die Einträge im Autostart aufgelistet. Wenn man den Haken vor einem Programm entfernt wird es nicht mehr automatisch beim Hochfahren geladen. Das bietet sich für viele überflüssige Updater, Media-Player und ähnliches an. Auch wenn man die Programme überhaupt nicht ständig nutzt, verbrauchen sie sonst im Dauerbetrieb ständig Systemressourcen.</p>
<p align="center"><a href="http://useitfree.wordpress.com/files/2009/05/startdelay-1.jpg"><img src="http://useitfree.wordpress.com/files/2009/05/startdelay-1-small.jpg" alt="startdelay" hspace="10" width="450" height="284" /></a></p>
<p>Der Software, die man wirklich starten möchte, kann dann noch eine Startzeit zugewiesen werden. Dazu zieht man den Eintrag in der Liste einfach auf die untere Zeitleiste und stellt den Zeitpunkt ein. Gezählt wird ab Windowsstart. Sinnvoll wäre z.B., Anti-Virus und Firewall sofort laden zu lassen &#8211; alle anderen Programme können verzögert werden. Zeitspanne und Reihenfolge richten sich dabei natürlich nach den persönlichen Bedürfnissen. Software, die man kurz nach dem Einschalten des PCs noch nicht braucht, kann man später platzieren, wichtigere weiter vorn.</p>
<p>Im standardmäßig eingestellten &#8220;Safe-Mode&#8221; werden keine wichtigen Systemkomponenten angezeigt &#8211; man kann also auch nichts lebenswichtiges deaktivieren. Für Einsteiger ist dieser Modus deshalb auf jeden Fall zu empfehlen. Im erweiterten Modus bieten sich im Gegenzug für Profis mehr Möglichkeiten den Autostart zu entschlacken.</p>
<p><a href="http://www.r2.com.au/software.php?page=2&#38;show=startdelay" target="_blank">Startup Delayer</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Auto Starting Applications with WebSphere]]></title>
<link>http://soatipsntricks.wordpress.com/2009/02/17/auto-starting-applications-with-websphere/</link>
<pubDate>Tue, 17 Feb 2009 15:56:25 +0000</pubDate>
<dc:creator>andrewferrier</dc:creator>
<guid>http://soatipsntricks.wordpress.com/2009/02/17/auto-starting-applications-with-websphere/</guid>
<description><![CDATA[There is a handy feature of WebSphere Application Server which allows you to control whether applica]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There is a handy feature of WebSphere Application Server which allows you to control whether applications start automatically when the server is (re)started. By default, all applications (which are Mediation Modules or Modules in WebSphere ESB and Process Server terminology) start automatically when the server starts, but you can turn this off on an application-by-application basis. This is particularly useful to speed up server startup time, or if the applications consume resources as soon as they are started.</p>
<p>You can enable or disable Auto Start using the admin console &#8211; simply navigate to <strong>Applications / Enterprise Applications / <em>Your application</em> / Target specific application status</strong>:</p>
<p><img class="size-full wp-image-227 alignleft" title="autostart" src="http://soatipsntricks.wordpress.com/files/2009/02/autostart.png" alt="autostart" width="939" height="235" /></p>
<p>If you have the application installed on multiple servers in a Network Deployment topology, you can select a different Auto Start status for each server.</p>
<p>Thanks to Victoria Amor for the help with this tip.</p>
<p><img src="/DOCUME~1/ferriera/LOCALS~1/Temp/moz-screenshot.jpg" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Un grand champion et un grand bonhomme remportent un petit Prix de France]]></title>
<link>http://kanzebu.wordpress.com/2009/02/08/un-grand-champion-et-un-grand-bonhomme-remportent-un-petit-prix-de-france/</link>
<pubDate>Sun, 08 Feb 2009 19:00:49 +0000</pubDate>
<dc:creator>kanzebu</dc:creator>
<guid>http://kanzebu.wordpress.com/2009/02/08/un-grand-champion-et-un-grand-bonhomme-remportent-un-petit-prix-de-france/</guid>
<description><![CDATA[Méduser tous ses adversaires dans une course chronométrée en 1&#8242;11&#8243;6, on aura vu ça tant ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Méduser tous ses adversaires dans une course chronométrée en 1&#8242;11&#8243;6, on aura vu ça tant de fois dans des courses européennes cet hiver à Vincennes. Sauf que là, c&#8217;était le Prix de France, la course autostart la plus dotée en France. <strong>Meaulnes du Corta</strong> l&#8217;a emportée, facilement, trop facilement. Ses adversaires ont fait pâle figure. Personne n&#8217;a osé l&#8217;attaquer, personne n&#8217;a donné l&#8217;impression de pouvoir le menacer dans la ligne d&#8217;arrivée. Cette course ne sera pas mémorable, sauf pour le <span style="text-decoration:underline;">doublé Amérique-France</span> du crack de Pierre Levesque et pour le <span style="text-decoration:underline;">retour au premier plan de Pierre Vercruysse</span>, après le terrible accident qui a coûté la vie à son fils Brandon, c&#8217;était lété dernier.</p>
<p><strong>Meaulnes du Corta</strong> a désormais le palmarès qu&#8217;il mérite. Lui, capable d&#8217;aller devant, de briller sur les pistes plates comme à Vincennes, de 1600 à 3000 mètres, a atteint ses objectifs.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Menjalankan Program Secara Otomatis di BlankOn 4.0 Meuligoe (Autostart)]]></title>
<link>http://rotyyu.wordpress.com/2008/12/17/menjalankan-program-secara-otomatis-di-blankon-40-meuligoe-autostart/</link>
<pubDate>Wed, 17 Dec 2008 10:02:25 +0000</pubDate>
<dc:creator>rotyyu</dc:creator>
<guid>http://rotyyu.wordpress.com/2008/12/17/menjalankan-program-secara-otomatis-di-blankon-40-meuligoe-autostart/</guid>
<description><![CDATA[Seringkali pengguna pemula yang baru migrasi ke GNU/Linux menghadapi kesulitan ketika hendak menjala]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Seringkali pengguna pemula yang baru migrasi ke GNU/Linux menghadapi kesulitan ketika hendak menjalankan suatu program secara otomatis saat komputer dihidupkan dan pengguna login ke desktop. Dalam artikel ini saya akan menunjukkan bagai mana mudahnya melakukan hal ini di BlankOn yang menggunakan desktop Gnome. Tulisan ini sangat tidak manjut buat mereka yang sudah lama bermain-main dengan GNU/Linux, jadi silakan menutup artikel ini jika Anda termasuk pengguna lanjut di GNU/Linux.</p>
<p><!--more-->Versi BlankOn yang digunakan dalam tulisan ini adalah BlankOn 4.0 Minimalis jahitan harian 20081213 di atas mesin HP Compag P4 2.40 GHz. Untuk menjalankan program secara otomatis atau istilah gaulnya autostart di Gnome, kita perlu menambahkannya ke sesi. BlankOn sudah menyediakan sebuah utilitas khusus untuk menjalankan sebuah program secara otomatis. Utilitas ini bernama gnome-session-properties. Klik menu System-Preferensi-Sesi untuk memulai utilitas ini.</p>
<div id="attachment_810" class="wp-caption alignnone" style="width: 241px"><img class="size-medium wp-image-810" title="menu-sesi" src="http://rotyyu.wordpress.com/files/2008/12/menu-sesi.jpg?w=231" alt="Akses Menu Sesi" width="231" height="300" /><p class="wp-caption-text">Akses Menu Sesi</p></div>
<p>Setelah itu dialog utilitas gnome-session-properties akan terbuka, di sana akan terlihat program-program mana saja yang akan dijalankan secara otomatis saat seorang pengguna login ke desktop.</p>
<div id="attachment_811" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-811" title="preferensi-sesi" src="http://rotyyu.wordpress.com/files/2008/12/preferensi-sesi.jpg?w=300" alt="Preferensi Sesi" width="300" height="232" /><p class="wp-caption-text">Preferensi Sesi</p></div>
<p>Klik tombol Tambah di jendela ini untuk menambahkan program baru yang akan dijalankan secara otomatis (dijadikan autostart). Dalam contoh ini program yang akan ditambahkan ke sesi adalah Pidgin. Maka masukkan Pidgin ke field Nama, pidgin ke field Perintah, dan Pesan Instan ke field Komentar.</p>
<div id="attachment_812" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-812" title="tambah-program-startup" src="http://rotyyu.wordpress.com/files/2008/12/tambah-program-startup.jpg?w=300" alt="Tambah Program Startup" width="300" height="164" /><p class="wp-caption-text">Tambah Program Startup</p></div>
<p>Klik tombol Tambah untuk menyelesaikan tahapan ini, dan jendela utama utilitas ini akan terbuka kembali dan akan terlihat program Pidgin sudah ditambahkan ke sesi.</p>
<div id="attachment_813" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-813" title="preferensi-sesi-pidgin" src="http://rotyyu.wordpress.com/files/2008/12/preferensi-sesi-pidgin.jpg?w=300" alt="Pidgin Telah Masuk Sesi" width="300" height="232" /><p class="wp-caption-text">Pidgin Telah Masuk Sesi</p></div>
<p>Silakan logout dan login kembali untuk melihat perubahannya. Cara ini juga berlaku untuk menambahkan program-program lain untuk dijalankan secara otomatis. Satu hal yang perlu diperhatikan adalah semakin banyak program yang jalan saat startup akan memakan waktu yang semakin lama.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Disable Embed Autoplay]]></title>
<link>http://blog.thewheatfield.org/2008/12/05/disable-embed-autoplay/</link>
<pubDate>Fri, 05 Dec 2008 15:06:54 +0000</pubDate>
<dc:creator>thewheat</dc:creator>
<guid>http://blog.thewheatfield.org/2008/12/05/disable-embed-autoplay/</guid>
<description><![CDATA[So yesterday I got annoyed at some auto playing music when visiting a blog and I couldn&#8217;t find]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So yesterday I got annoyed at some auto playing music when visiting a blog and I couldn&#8217;t find a userscript to disable it so I coded my own. I actually read more of the <a href="http://diveintogreasemonkey.org/">Dive Into Greasemonkey</a> documentation this time and added it to my <a href="http://dev.thewheatfield.org/userscripts">userscript page</a>.</p>
<blockquote>
<ul>
<li><a href="disable_embed_autoplay.user.js">View/Install Script</a>
			</li>
<li>Works for:
<ul>
<li>Self embeded audio</li>
<li><a href="http://myflashfetish.com/">My Flash Fetish</a></li>
<li><a href="http://imeem.com/">Imeem</a></li>
</ul>
</li>
</ul>
</blockquote>
<p>Hmmm just tried it in <a href="http://www.opera.com/">Opera</a> and it didn&#8217;t really work. Oh well will modify some other time since I still use <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> most of the times (still haven&#8217;t made a transition back to Opera yet, I blame inertia). Still wondering how to manage these little projects of mine (I should update the projects page&#8230;), wondering if should but it on a separate blog/host (currently using brother&#8217;s web host for <a href="http://thewheatfield.org">http://thewheatfield.org</a> subdomains but using <a href="http://wordpress.com">WordPress.com</a> for the <a href="http://blog.thewheatfield.org">http://blog.thewheatfield.org</a>), unsure of how to make things accessible while keeping things low for maintenance purposes. Suggestions are always welcome</p>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Känns din dator seg?]]></title>
<link>http://teknikforalla.wordpress.com/2008/11/16/kanns-din-dator-seg/</link>
<pubDate>Sun, 16 Nov 2008 15:09:14 +0000</pubDate>
<dc:creator>Erik</dc:creator>
<guid>http://teknikforalla.wordpress.com/2008/11/16/kanns-din-dator-seg/</guid>
<description><![CDATA[Börjar din dator kännas lite trött, eller tar det bara väldigt lång tid för den att starta? Då kansk]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Börjar din dator kännas lite trött, eller tar det bara väldigt lång tid för den att starta?<br />
Då kanske du har en massa onödiga program som startas tillsammans med din dator när du loggar in.</p>
<p>Många program har en ful ovana att se till att de startas så fort man loggar in på sin dator trots att man bara använder programmen någon enstaka gång. Detta gör att listan med autostartade program ganska snabbt kan växa sig riktigt lång om man inte håller efter den.</p>
<p>Det första och enklaste man bör göra är att kontrollera vilka program som ligger i fliken <em>autostart</em> eller <em>startup</em> på startmenyn. En del program lägger sig här för att kunna tjuvstarta lite i bakgrunden så att det känns som programmet startas snabbare när man väl vill köra det. Därför kan det vara skönt att låta en del program autostartas om man anväder dom ofta, men om det är ett program som startas mer sällan eller om du helt enkelt vill få en snabbare uppstart är det bara att ta bort det.</p>
<p>Lite mer avancerade användare vill nog hitta fler prestandatjuvar och det kan man göra genom att öppna <em>kör</em> eller <em>run</em> på startmenyn eller trycka &#8220;windowstangenten + r&#8221; och sedan skriva <em>msconfig</em>. Här kan man under uppstartsfliken välja att kryssa bort program som man inte vill ska starta tillsammans med Windows.</p>
<p style="text-align:center;">
<div id="attachment_203" class="wp-caption aligncenter" style="width: 310px"><a href="http://teknikforalla.wordpress.com/files/2008/11/msconfig.jpg"><img class="size-medium wp-image-203" title="msconfig" src="http://teknikforalla.wordpress.com/files/2008/11/msconfig.jpg?w=300" alt="msconfig" width="300" height="199" /></a><p class="wp-caption-text">msconfig</p></div>
<p style="text-align:center;"><strong>OBS! Ta inte bort något som du inte vet vad det är</strong></p>
<p style="text-align:left;">När man nu börjar rota i vilka program det är som startas med datorn kan det hända att man upptäcker att man har program installerade som aldrig används och bara tar upp plats och prestanda. Då ska man se till att dessa bli avinstallerade korrekt genom att via <em>kontrollpanelen</em> öppna <em>Lägg till/Ta bort program</em> eller <em>Programs and Features</em> och där välja det program som man vill avinstallera och sedan trycka på knappen avinstallera.</p>
<p style="text-align:left;">
<div id="attachment_205" class="wp-caption aligncenter" style="width: 310px"><a href="http://teknikforalla.wordpress.com/files/2008/11/avinstallera.jpg"><img class="size-medium wp-image-205" title="avinstallera" src="http://teknikforalla.wordpress.com/files/2008/11/avinstallera.jpg?w=300" alt="Programs and Features" width="300" height="188" /></a><p class="wp-caption-text">Programs and Features</p></div>
</div>]]></content:encoded>
</item>

</channel>
</rss>
