/[clonezilla-sysresccd]/trunk/www/onepage.html
ViewVC logotype

Diff of /trunk/www/onepage.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 182 by sng, Sun Jul 3 18:05:43 2011 UTC revision 183 by sng, Mon Jul 4 13:31:17 2011 UTC
# Line 86  To access our current stable version, pl Line 86  To access our current stable version, pl
86  <H3>Welcome</H3>  <H3>Welcome</H3>
87    <div style="margin:0; padding: 3px; width: 980; position relative;">    <div style="margin:0; padding: 3px; width: 980; position relative;">
88      <div style="position: absolute; left: 0px;"><H4>30/06/2011 - v 3.2.0</H4></div>      <div style="position: absolute; left: 0px;"><H4>30/06/2011 - v 3.2.0</H4></div>
89      <div style="position: absolute; right: 0px;"><H4>Last update: 03/07/2011</H4></div>      <div style="position: absolute; right: 0px;"><H4>Last update: 04/07/2011</H4></div>
90    </div>    </div>
91  </div>  </div>
92  <div id="linkline">  <div id="linkline">
# Line 428  Since you are using any linux box to com Line 428  Since you are using any linux box to com
428  for f in *.c32<br>  for f in *.c32<br>
429  do<br>  do<br>
430  cp -v <font color="Green"><b>/usr/lib/syslinux</b></font>/$f .<br>  cp -v <font color="Green"><b>/usr/lib/syslinux</b></font>/$f .<br>
431  cd ..<br>  done<br>
432  done</p>  cd ..</p>
433  <p>In either case, unmount the device and delete the mount point (directory).</p>  <p>In either case, unmount the device and delete the mount point (directory).</p>
434  <p class="newcode">cd; umount /dev/<font color="Green">sdc4</font><br>  <p class="newcode">cd; umount /dev/<font color="Green">sdc4</font><br>
435  rmdir /mnt/usbdevice</p>  rmdir /mnt/usbdevice</p>
# Line 3236  Can&nbsp;write&nbsp;RAM:&nbsp;&nbsp;&nbs Line 3236  Can&nbsp;write&nbsp;RAM:&nbsp;&nbsp;&nbs
3236  <br>  <br>
3237  &nbsp;*&nbsp;signifies&nbsp;the&nbsp;current&nbsp;active&nbsp;mode<br>  &nbsp;*&nbsp;signifies&nbsp;the&nbsp;current&nbsp;active&nbsp;mode<br>
3238  <br></p>  <br></p>
3239    <a name="backup-top"></a>
3240    <H2 style="font-size: 2em;"><a name="why-vi"></a>Why vi? <span class="hideprint">[<a href="#backup-top" title="go to top of the page">^</a>]</span></H2>
3241    <p>vi is the standard editor in most existing *nix environments. This means that by learning it, you make sure you will never find yourself in a spot where you cannot edit a file, because the editor is unknown to you.</p>
3242    <p>vi is really very powerful, something that's difficult to see judging from its plain interface. It goes without a doubt to say, that once you get familiar with it, you may find it hard to live without it. Actually, I am using it right now, to write this page :)</p>
3243    <p>So what's the big fuss with people finding it so hard to use or even not being able to use it at all? Well, I wouldn't say it's difficult to use, I'd say it's different. The whole philosophy behind vi is hard to comprehend especially by people coming from Windows (and lately also from *nix world).</p>
3244    <p> vi is a console program and many people are really scared to use the console (this is one reason vi is said to be hard). Also, vi believes (well its developers) that a person should not get his hands off the keyboard for any reason while typing or editing text. This is why vi implements all its commands in such a way that they can be inserted from the keyboard, without having to use the arrow keys or the numeric keypad or anything.</p>
3245    <H2><a name="why-vi-tut"></a>Why another vi tutorial? <span class="hideprint">[<a href="#backup-top" title="go to top of the page">^</a>]</span></H2>
3246    <p> Well, this is not really a vi tutorial, this is a very basic rescue introduction. It's meant for people who do not know vi, don't want to know vi, will never use it unless they have to (this may be the situation with <b>Clonezilla live</b>), but need to edit a file without going through a real tutorial.  </p>
3247    <p> So let's get down to it.  </p>
3248    <H3><a name="vi-modes"></a>vi modes <span class="hideprint">[<a href="#backup-top" title="go to top of the page">^</a>]</span></H3>
3249    <p> vi has two working modes (well, that's not entirely true, but let's just keep it simple).  </p>
3250    <ol>
3251    <li>Command Mode<br>
3252    In this mode of operation you can insert commands (delete characters, scroll down, save file, exit the program, etc.). This is the default mode (the one that's active when vi is first launched). Anything you do starts from Command mode and ends back in Command Mode.</li>
3253    <li>Input Mode<br>
3254    In this mode of operation all you do is insert test. This is the default mode of operation for any other editor you have ever worked with, but not with vi. In order to start typing text you have to type <b>i</b> or <b>o</b> from Command Mode in order to enter Insert Mode.</li>
3255    </ol>
3256    <div align="center"><table class="note" border="0" cellpadding="20"><tr><td valign="top"><img src="images/info.png"></td><td>
3257    In case you can't remember which mode you are in,<br>
3258    just type <b>&lt;ESC&gt;</b> (that's <b>Escape</b>) to get back to<br>
3259    Command Mode and take it from there.</td></tr></table></div>
3260    <p> Although vi does provide commands for text navigation,  you can still use the arrow keys and Home, End, PgUp, PgDown to move around.  </p>
3261    <H3><a name="vi-commands"></a>vi commands <span class="hideprint">[<a href="#backup-top" title="go to top of the page">^</a>]</span></H3>
3262    <p>vi commands are issued from the <b>Command Mode</b>. There are two types of commands: <b>normal commands</b> (which take effect as soon as you type them) and <b>extended commands</b> (which start with a "<b>:</b>" and do not take effect until <b>&lt;ENTER&gt;</b> is pressed).</p>
3263    <p> The commands you will need are: </p>
3264    <table border="1" cellpadding="10" align="center">
3265    <tr><td><b>Command</b></td>
3266    <td><b>Effect</b></td></tr>
3267    <tr><td colspan="2"><b>Save / Exit (Extended Commands)<b/></td></tr>
3268    <tr><td>:w</td>
3269    <td>Save file</td></tr>
3270    <tr><td>:wq</td>
3271    <td>Save file and exit</td></tr>
3272    <tr><td>:q</td>
3273    <td>Exit the program</td></tr>
3274    <tr><td>:q!</td>
3275    <td>Exit without saving</td></tr>
3276    <tr><td>:e!</td>
3277    <td>Reload the file (revert to saved)</td></tr>
3278    <tr><td colspan="2"><b>Inserting test<b/></td></tr>
3279    <tr><td>i</td>
3280    <td>Enter <b>Insert Mode</b>. Typing starts before current cursor position</td></tr>
3281    <tr><td>a</td>
3282    <td>Enter <b>Insert Mode</b>. Typing starts after current cursor position</td></tr>
3283    <tr><td>o</td>
3284    <td>Enter <b>Insert Mode</b>. Typing starts on a new line</td></tr>
3285    <tr><td>O</td>
3286    <td>Enter <b>Insert Mode</b>. Typing starts on a new line above the current one</td></tr>
3287    <tr><td>ESC</td>
3288    <td>Exit <b>Insert Mode</b> - enter <b>Command Mode</b></td></tr>
3289    <tr><td colspan="2"><b>Deleting text<b/></td></tr>
3290    <tr><td>x</td>
3291    <td>Delete the character under the cursor</td></tr>
3292    <tr><td>dd</td>
3293    <td>Delete the whole line</td></tr>
3294    <tr><td>d^</td>
3295    <td>Delete to the beginning of the line (starting from cursor position)</td></tr>
3296    <tr><td>d$</td>
3297    <td>Delete to the end of the line (starting from cursor position)</td></tr>
3298    <tr><td colspan="2"><b>Changing test<b/></td></tr>
3299    <tr><td>cw</td>
3300    <td>Change a word (starting from cursor position)</td></tr>
3301    <tr><td>c^</td>
3302    <td>Change text to the beginning of the line (starting from cursor position)</td></tr>
3303    <tr><td>c$</td>
3304    <td>Change text to the end of the line (starting from cursor position)</td></tr>
3305    <tr><td colspan="2"><b>Replacing test<b/></td></tr>
3306    <tr><td>r</td>
3307    <td>Replace the character under cursor. Just press the desired character after <b>r</b></td></tr>
3308    <tr><td>R</td>
3309    <td>Replace text until <b>&lt;ESC&gt;</b> is pressed. Just start typing after pressing <b>R</b></td></tr>
3310    <tr><td colspan="2"><b>Undo / Redo<b/></td></tr>
3311    <tr><td>u</td>
3312    <td>Undo last action</td></tr>
3313    <tr><td>Ctrl-R</td>
3314    <td>Redo last action</td></tr>
3315    </table>
3316  <a name="shots-top"></a>  <a name="shots-top"></a>
3317  <p align="center"><img src="images/clonezilla-sysresccd-1.png" border="0" alt="The splash screen of v 3.2.0"><br>  <p align="center"><img src="images/clonezilla-sysresccd-1.png" border="0" alt="The splash screen of v 3.2.0"><br>
3318  The splash screen of v 3.2.0 (Clonezilla i686)<br><br><img src="images/clonezilla-sysresccd-2.png" border="0" alt="The splash screen of my test Restore DVD (v 3.2.0)"><br>  The splash screen of v 3.2.0 (Clonezilla i686)<br><br><img src="images/clonezilla-sysresccd-2.png" border="0" alt="The splash screen of my test Restore DVD (v 3.2.0)"><br>

Legend:
Removed from v.182  
changed lines
  Added in v.183

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26