#!/usr/bin/perl # DrakBoot # $Id$ # Copyright (C) 2001-2004 MandrakeSoft # Yves Duret, Thierry Vignaud # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. use strict; use diagnostics; use lib qw(/usr/lib/libDrakX); use standalone; #- warning, standalone must be loaded very first, for 'explanations' use c; use common; use interactive; use any; use bootloader; use detect_devices; use fsedit; use fs; use Config; use POSIX; use Xconfig::various; use log; my $splash_working = any { /^--splash$/ } @ARGV; my $in = 'interactive'->vnew('su'); if (!$in->isa('interactive::gtk') || any { /^--boot$/ } @ARGV) { $::isWizard = 1; lilo_choice(); $in->exit(0); } require ugtk2; ugtk2->import(qw(:helpers :wrappers :create)); my $no_bootsplash; my $x_mode = Xconfig::various::runlevel() == 5; my $auto_mode = any::get_autologin(); my $switch_theme = '/usr/share/bootsplash/scripts/switch-themes'; my $remove_theme = '/usr/share/bootsplash/scripts/remove-theme'; my $w = ugtk2->new($splash_working ? N("Graphical boot theme selection") : N("System mode")); my $window = $w->{window}; $::main_window = $w->{rwindow} if !$::isEmbedded; $window->signal_connect(delete_event => sub { ugtk2->exit(0) }); unless ($::isEmbedded) { $window->set_border_width(2); ### menus definition # the menus are not shown but they provides shiny shortcut like C-q my @menu_items = ([ N("/_File"), undef, undef, undef, '' ], [ N("/File/_Quit"), N("Q"), sub { ugtk2->exit(0) }, undef, '' ], ); create_factory_menu($w->{rwindow}, @menu_items); ######### menus end } my $user_combo = Gtk2::ComboBox->new_text; $user_combo->set_popdown_strings(list_users()); $user_combo->entry->set_text($auto_mode->{autologin}) if $auto_mode->{autologin}; my $desktop_combo = Gtk2::ComboBox->new_text; $desktop_combo->set_popdown_strings(split(' ', `/usr/sbin/chksession -l`)); $desktop_combo->entry->set_text($auto_mode->{desktop}) if $auto_mode->{desktop}; my %themes = ('path' => '/usr/share/bootsplash/themes/', 'sysconfig' => '/etc/sysconfig/bootsplash', 'default' => 'Mandrake', 'def_thmb' => '/usr/share/libDrakX/pixmaps/nosplash_thumb.png', 'lilo' => {'file' => '/lilo/message', 'thumb' => '/lilo/thumb.png' }, 'boot' => {'path' => '/images/', #'thumb'=>'/images/thumb.png', }, ); my $kernel_release = `uname -r`; chomp $kernel_release; my $initrd = "/boot/initrd-$kernel_release.img" if -f "/boot/initrd-$kernel_release.img"; my $cur_res = `/usr/share/bootsplash/scripts/detect-resolution $initrd`; $cur_res =~ m/(\d+x\d+)x\d+/ and $cur_res = $1; #- verify that current resolution is ok if (!$cur_res) { $no_bootsplash = 1; #- we can't select any theme we're not in Framebuffer mode :-/ $cur_res = '800x600' } $no_bootsplash = 0 if $::testing; my $splash_mode = !$no_bootsplash; my $keep_logo = 1; if (-r $themes{sysconfig}) { my $SYSF; open $SYSF, $themes{sysconfig} or die "Can't open $themes{sysconfig}\n"; while (<$SYSF>) { /^SPLASH=no/ and $splash_mode = 0; /^THEME=(.*)/ and -f "$themes{path}$1$themes{boot}{path}bootsplash-$cur_res.jpg" and $themes{default} = $1; /^LOGO_CONSOLE=(.*)/ and $keep_logo = !($1 eq 'no'); } close($SYSF); } my @thms; my @boot_thms = if_(!$themes{default}, qw(default)); chdir($themes{path}); #- we must change directory for correct @thms assignement foreach (all('.')) { if (-d "$themes{path}$_" && m/^[^.]/) { push @thms, $_; -f "$themes{path}$_$themes{boot}{path}bootsplash-$cur_res.jpg" and push @boot_thms, $_; } } my %combo = ('thms' => '', 'lilo' => '', 'boot' => ''); foreach (keys(%combo)) { $combo{$_} = gtkset_size_request(Gtk2::ComboBox->new_text, 10, -1); } $combo{boot}->set_popdown_strings(@boot_thms); $combo{boot}->entry->set_text($themes{default}); my $boot_pic = gtkcreate_img($themes{def_thmb}); change_image($boot_pic, $themes{default}); my $_thm_button = Gtk2::Button->new(N("Install themes")); my $_B_create = gtksignal_connect(Gtk2::Button->new(N("Create new theme")), clicked => sub { system('/usr/sbin/draksplash ') }); #- ******** action to take on changing combos values $combo{boot}->entry->signal_connect(changed => sub { change_image($boot_pic, $combo{boot}->entry->get_text) }); my ($x_box, $splash_box); my $boot_warn = 1; gtkadd($window, gtkpack_(Gtk2::VBox->new(0,0), ($splash_working ? (1, gtkpack_(gtkset_border_width(Gtk2::VBox->new(0, 5), 5), 0, gtksignal_connect(gtkset_active(Gtk2::CheckButton->new(N("Use graphical boot")), $splash_mode), clicked => sub { $splash_mode = !$splash_mode; if ($boot_warn && $no_bootsplash && $splash_mode) { $in->ask_warn(N("Warning"), [ N("Your system bootloader is not in framebuffer mode. To activate graphical boot, select a graphic video mode from the bootloader configuration tool.") ]); $boot_warn = 0 } $splash_box->set_sensitive($splash_mode); }), 1, gtkpack(gtkset_sensitive($splash_box = Gtk2::HBox->new(0, 0), $splash_mode), gtkpack__(Gtk2::VBox->new(0, 5), N("Theme"), $combo{boot}, #gtksignal_connect(Gtk2::CheckButton->new(N("Display theme\nunder console")), clicked => sub { invbool(\$keep_logo) }), gtksignal_connect(gtkset_active(Gtk2::CheckButton->new(N("Display theme\nunder console")), $keep_logo), clicked => sub { invbool(\$keep_logo) }) ), Gtk2::VSeparator->new, gtkpack__(Gtk2::VBox->new(0, 5), $boot_pic)) ), ) : (1, gtkpack__(Gtk2::VBox->new(0, 5), gtksignal_connect(gtkset_active(Gtk2::CheckButton->new(N("Launch the graphical environment when your system starts")), $x_mode), clicked => sub { $x_box->set_sensitive(!$x_mode); $x_mode = !$x_mode; }), gtkpack__(gtkset_sensitive($x_box = Gtk2::VBox->new(0, 0), $x_mode), gtkpack__(Gtk2::VBox->new(0, 0), my @auto_buttons = gtkradio((N("No, I don't want autologin")) x 2, N("Yes, I want autologin with this (user, desktop)")), ), gtkpack__( my $auto_box = Gtk2::HBox->new, gtkpack( Gtk2::VBox->new, Gtk2::Label->new(N("Default user")), Gtk2::Label->new(N("Default desktop")), ), gtkpack( Gtk2::VBox->new, $user_combo, $desktop_combo ), ) ) ) ), 0, create_okcancel({ cancel_clicked => sub { ugtk2->exit(0) }, ok_clicked => sub { Xconfig::various::runlevel($x_mode ? 5 : 3); $splash_working or updateAutologin(); $no_bootsplash or update_bootsplash($combo{boot}->entry->get_text, ,$splash_mode, $keep_logo); ugtk2->exit(0); } }, ), ) ) ); if (!$splash_working) { $auto_buttons[1]->signal_connect('toggled' => sub { $auto_box->set_sensitive($auto_buttons[1]->get_active) }); $auto_buttons[0]->signal_connect('toggled' => sub { $auto_box->set_sensitive(!$auto_buttons[0]->get_active) }); $auto_buttons[1]->set_active(1) if $auto_mode->{autologin}; $auto_buttons[0]->set_active(1) if !$auto_mode->{autologin}; $x_box->set_sensitive($x_mode); $auto_box->set_sensitive($auto_mode->{autologin} ? 1 : 0); } $window->show_all; gtkflush(); $w->main; $in->exit(0); sub lilo_choice() { my $bootloader = bootloader::read(); my $all_hds = fsedit::get_hds(); fs::get_raw_hds('', $all_hds); fs::get_info_from_fstab($all_hds, ''); my $fstab = [ fsedit::get_all_fstab($all_hds) ]; ask: eval { my $before = fs::fstab_to_string($all_hds); any::setupBootloader($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL}); if ($before ne fs::fstab_to_string($all_hds)) { #- for /tmp using tmpfs when "clean /tmp" is chosen fs::write_fstab($all_hds); } }; my $err = $@; if ($err && $err !~ /wizcancel/) { # BUG: note that the following message won't speak about the right bootloader if user is currently switching between # various bootloaders and if the error occured before boot sector get overwritten by bootloader installer $in->ask_warn(N("Error"), [ N("Installation of %s failed. The following error occured:", bootloader::detect_bootloader()), $err ]); goto ask; } } #------------------------------------------------------------- # launch autologin functions #------------------------------------------------------------- sub updateAutologin() { my ($usern, $deskt) = ($user_combo->entry->get_text, $desktop_combo->entry->get_text); $::testing and return; if ($auto_buttons[1]->get_active) { any::set_autologin($usern, $deskt); } else { any::set_autologin(); } } sub update_bootsplash { my ($theme, $splash_mode, $keep_logo) = @_; #- theme scripts will update SPLASH value in sysconfig file if (-x $switch_theme) { my $logo_console = $keep_logo ? 'theme' : 'no'; if ($::testing) { if ($splash_mode) { print "substInFile { s/^LOGO_CONSOLE=.*/LOGO_CONSOLE=$logo_console/ } $themes{sysconfig}\n"; print "system($switch_theme, $theme)\n"; } else { print "system($remove_theme, $theme)\n"; } } else { if ($splash_mode) { substInFile { s/^LOGO_CONSOLE=.*/LOGO_CONSOLE=$logo_console/ } $themes{sysconfig}; system($switch_theme, $theme); } else { system($remove_theme, $theme); } } } } sub change_image { my ($boot_pic, $val) = @_; my $img_file = $themes{path} . $val . $themes{boot}{path}."bootsplash-$cur_res.jpg"; -f $img_file or return; my $boot_pixbuf = gtkcreate_pixbuf($img_file); $boot_pixbuf = $boot_pixbuf->scale_simple(300, 200, 'nearest'); $boot_pic->set_from_pixbuf($boot_pixbuf); } 3' href='#n313'>313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   
      <title>P&euml;rmbledhje Konfigurimi</title>
      <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
      <link rel="home" href="index.html" title="Instalim me DrakX">
      <link rel="up" href="index.html" title="Instalim me DrakX">
      <link rel="prev" href="setupBootloader.html" title="Bootloader">
      <link rel="next" href="locale.html" title="Lokale"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
         <!--
      body { font-family: sans-serif; font-size: 13px }
      table { font-family: sans-serif; font-size: 13px }
    --></style></head>
   <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
      <div lang="sq" class="section" title="P&euml;rmbledhje Konfigurimi">
         <div class="titlepage">
            <div>
               <div>
                  <h2 class="title"><a name="misc-params"></a>P&euml;rmbledhje Konfigurimi
                  </h2>
               </div>
            </div>
         </div>
           
         
           
         
           
         
           
         
           
         
           
         
           
         
           
         
           
         <p><a name="misc-params-pa1"></a>DrakX paraqet nj&euml; propozim p&euml;r konfigurimin e sistemit tuaj n&euml; var&euml;si t&euml;
            zgjedhjeve q&euml; keni b&euml;r&euml; dhe n&euml; pajisjet e zbuluara. Ju mund t&euml; kontrolloni
            cil&euml;simet k&euml;tu dhe t'i ndryshoni ato n&euml;se d&euml;shironi duke shtypur
            <span class="emphasis"><em>Konfiguro</em></span>.
         </p>
         
           
         <div class="note" title="Sh&euml;nim" style="margin-left: 0.5in; margin-right: 0.5in;">
            <table border="0" summary="Note">
               <tr>
                  <td rowspan="2" align="center" valign="top" width="25"><img alt="[Sh&euml;nim]" src="note.png"></td>
                  <th align="left"></th>
               </tr>
               <tr>
                  <td align="left" valign="top">
                         
                     <p>Si rregull i p&euml;rgjithsh&euml;m, rekomandohet q&euml; t&euml; pranoni cil&euml;simet e
                        parazgjedhura n&euml;se:
                     </p>
                     <div class="itemizedlist">
                        <ul class="itemizedlist">
                           <li class="listitem">
                                        
                              <p>ka probleme t&euml; njohura me nj&euml; cil&euml;sim t&euml; parazgjedhur</p>
                                      
                           </li>
                           <li class="listitem">
                                        
                              <p>cil&euml;simi i parazgjedhur &euml;sht&euml; provuar dhe d&euml;shton</p>
                                      
                           </li>
                           <li class="listitem">
                                        
                              <p>disa faktor&euml; t&euml; tjet&euml;r t&euml; p&euml;rmendur n&euml; seksionet e detajuara m&euml; posht&euml; jan&euml;
                                 problem
                              </p>
                                      
                           </li>
                        </ul>
                     </div>
                       
                  </td>
               </tr>
            </table>
         </div>
         
           
         <div class="section" title="Parametrat e Sistemit">
            <div class="titlepage">
               <div>
                  <div>
                     <h3 class="title"><a name="misc-params-system"></a>Parametrat e Sistemit
                     </h3>
                  </div>
               </div>
            </div>
                
            
                
            <div class="itemizedlist">
               <ul class="itemizedlist">
                  <li class="listitem">
                             
                     <p><a name="misc-params-system-pa2"></a><span class="bold"><strong>Koh&euml;zona</strong></span></p>
                     
                             
                     <p><a name="misc-params-system-pa2a"></a>DrakX p&euml;rzgjedh nj&euml; koh&euml;zon&euml; p&euml;r ty, n&euml; var&euml;si t&euml; gjuh&euml;s tuaj t&euml;
                        preferuar. Ju mund ta ndryshoni n&euml;se &euml;sht&euml; e nevojshme. Shiko gjithashtu
                        <a class="xref" href="locale.html#configureTimezoneUTC" title="Konfiguro koh&euml;n-zon&euml;s tuaj">Configure Timezone</a></p>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-system-pa3"></a><span class="bold"><strong>Shteti / Rajoni</strong></span></p>
                     
                             
                     <p><a name="misc-params-system-pa3a"></a>N&euml;se shteti i zgjedhur &euml;sht&euml; i gabuar, &euml;sht&euml; shum&euml; e r&euml;nd&euml;sishme q&euml; t&euml;
                        korrigjoni cil&euml;simin. <a class="xref" href="locale.html#selectCountry" title="Zgjidhni Shtetin tuaj / Rajonin">Select Country</a></p>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-system-pa4"></a><span class="bold"><strong>Bootloader</strong></span></p>
                     
                             
                     <p><a name="misc-params-system-pa4a"></a>DrakX propozim p&euml;r cil&euml;simet bootloader
                     </p>
                     
                             
                     <p><a name="misc-params-system-pa4b"></a>Mos ndryshoni asgj&euml;, n&euml;se nuk dini se si t&euml; konfiguroni GRUB2. P&euml;r m&euml; shum&euml;
                        informacion, shih <a class="xref" href="setupBootloader.html" title="Bootloader">Bootloader</a></p>
                     
                             
                           
                     
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-system-pa5"></a><span class="bold"><strong>Administrim p&euml;rdoruesi</strong></span></p>
                     
                             
                     <p><a name="misc-params-system-pa5a"></a>K&euml;tu mund t&euml; shtosh p&euml;rdorues shtes&euml;. Secili prej tyre do t&euml; ndahet n&euml; dosje
                        <code class="filename">/home</code>.
                     </p>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-system-pa6"></a><span class="bold"><strong>Sh&euml;rbimet</strong></span></p>
                     
                             
                     <p><a name="misc-params-system-pa6a"></a>Sh&euml;rbimet e sistemit i referohen atyre programeve t&euml; vogla q&euml; funksionojn&euml;
                        n&euml; sfond (daemon). Ky mjet ju lejon t&euml; aktivizoni ose t&euml; &ccedil;aktivizoni procese
                        t&euml; caktuara.
                     </p>
                     
                             
                     <p><a name="misc-params-system-pa6b"></a>Ju duhet t&euml; kontrolloni me kujdes p&euml;rpara se t&euml; ndryshoni ndonj&euml; gj&euml; k&euml;tu -
                        nj&euml; gabim mund t&euml; parandaloj&euml; q&euml; kompjuteri juaj t&euml; funksionoj&euml; si&ccedil;
                        duhet. P&euml;r m&euml; shum&euml; informacion, shih <a class="xref" href="configureServices.html" title="Konfiguro sh&euml;rbimet tuaja">Configure Services</a></p>
                           
                  </li>
               </ul>
            </div>
              
         </div>
         
           
         <div class="section" title="Parametrat pjes&euml;ve-elektronike">
            <div class="titlepage">
               <div>
                  <div>
                     <h3 class="title"><a name="misc-params-hardware"></a>Parametrat pjes&euml;ve-elektronike
                     </h3>
                  </div>
               </div>
            </div>
                
            
                
            <div class="itemizedlist">
               <ul class="itemizedlist">
                  <li class="listitem">
                             
                     <p><a name="misc-params-hardware-pa1"></a><span class="bold"><strong>Tastier&euml;</strong></span></p>
                     
                             
                     <p><a name="misc-params-hardware-pa1a"></a>Konfiguro paraqitjen e tastier&euml;s sipas vendndodhjes, gjuh&euml;s dhe tipit t&euml;
                        tastier&euml;s.
                     </p>
                     
                             
                     <div class="note" title="Sh&euml;nim" style="margin-left: 0.5in; margin-right: 0.5in;">
                        <table border="0" summary="Note">
                           <tr>
                              <td rowspan="2" align="center" valign="top" width="25"><img alt="[Sh&euml;nim]" src="note.png"></td>
                              <th align="left"></th>
                           </tr>
                           <tr>
                              <td align="left" valign="top">
                                           
                                 <p>N&euml;se v&euml;reni nj&euml; paraqitje t&euml; gabuar t&euml; tastier&euml;s dhe d&euml;shironi ta ndryshoni,
                                    mbani n&euml; mend se fjal&euml;kalimet tuaja do t&euml; ndryshojn&euml; gjithashtu.
                                 </p>
                                         
                              </td>
                           </tr>
                        </table>
                     </div>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-hardware-pa2"></a><span class="bold"><strong>Miu</strong></span></p>
                     
                             
                     <p><a name="misc-params-hardware-pa2a"></a>K&euml;tu mund t&euml; shtoni ose konfiguroni pajisje t&euml; tjera treguese, tableta,
                        trackballs etj.
                     </p>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-hardware-pa3"></a><span class="bold"><strong>Kart&euml; Z&euml;ri</strong></span></p>
                     
                             
                     <p><a name="misc-params-hardware-pa3a"></a>Instaluesi do t&euml; p&euml;rdor&euml; drejtuesin e parazgjedhur n&euml;se &euml;sht&euml; n&euml;
                        dispozicion.
                     </p>
                     
                             
                     <p>N&euml;se nuk ka drejtues t&euml; parazgjedhur p&euml;r kart&euml;n tuaj t&euml; z&euml;rit, mund t&euml; ket&euml;
                        mund&euml;si t&euml; tjera p&euml;r t&euml; zgjedhur. N&euml;se ky &euml;sht&euml; rasti, por mendoni se
                        instaluesi nuk ka b&euml;r&euml; zgjedhjen m&euml; t&euml; p&euml;rshtatshme, mund t&euml; klikoni
                        <span class="emphasis"><em>P&euml;rparuar</em></span> p&euml;r t&euml; p&euml;rcaktuar manualisht nj&euml; drejtues.
                     </p>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-hardware-pa4"></a><span class="bold"><strong>Nd&euml;rfaqe Grafike </strong></span></p>
                     
                             
                     <p><a name="misc-params-hardware-pa4a"></a>Ky seksion ju lejon t&euml; konfiguroni ekranet e kart&euml;(s) grafike tuaj. P&euml;r m&euml;
                        shum&euml; informacion, shih <a class="xref" href="graphicalConfiguration.html#configureX_chooser" title="Karta Grafike dhe Konfigurimi Monitorit">Karta Grafike dhe Konfigurimi Monitorit</a></p>
                     
                             
                           
                     
                  </li>
               </ul>
            </div>
            
                
              
         </div>
         
           
         <div class="section" title="Parametrat rrjeti dhe Interneti">
            <div class="titlepage">
               <div>
                  <div>
                     <h3 class="title"><a name="misc-params-network"></a>Parametrat rrjeti dhe Interneti
                     </h3>
                  </div>
               </div>
            </div>
                
            
                
            <div class="itemizedlist">
               <ul class="itemizedlist">
                  <li class="listitem">
                             
                     <p><a name="misc-params-network-pa1"></a><span class="bold"><strong>Rrjet</strong></span></p>
                     
                             
                     <p><a name="misc-params-network-pa2"></a>Ju mund t&euml; konfiguroni rrjetin tuaj k&euml;tu, por p&euml;r kartat e rrjetit me
                        drejtues jo t&euml; lir&euml;, &euml;sht&euml; m&euml; mir&euml; ta b&euml;ni k&euml;t&euml; pasi t&euml; rinisni, duke
                        p&euml;rdorur Qendr&euml;n e Kontrollit t&euml; Mageia, n&euml;se nuk e keni aktivizuar ende
                        depot media <span class="emphasis"><em>Nonfree</em></span>.
                     </p>
                     
                             
                     <div class="warning" title="Paralajm&euml;rim" style="margin-left: 0.5in; margin-right: 0.5in;">
                        <table border="0" summary="Warning">
                           <tr>
                              <td rowspan="2" align="center" valign="top" width="25"><img alt="[Paralajm&euml;rim]" src="warning.png"></td>
                              <th align="left"></th>
                           </tr>
                           <tr>
                              <td align="left" valign="top">
                                           
                                 <p><a name="misc-params-network-pa3"></a>Kur shtoni nj&euml; kart&euml; rrjeti, mos harroni t&euml; vendosni firewall tuaj p&euml;r t&euml;
                                    monitoruar at&euml; nd&euml;rfaqe gjithashtu.
                                 </p>
                                         
                              </td>
                           </tr>
                        </table>
                     </div>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-network-pa4"></a><span class="bold"><strong>Proxies</strong></span></p>
                     
                             
                     <p><a name="misc-params-network-pa4a"></a>Nj&euml; proxy server vepron si nj&euml; nd&euml;rmjet&euml;s midis kompjuterit tuaj dhe
                        internetit m&euml; t&euml; gjer&euml;. Ky seksion ju lejon t&euml; konfiguroni kompjuterin tuaj
                        p&euml;r t&euml; p&euml;rdorur nj&euml; sh&euml;rbim proxy.
                     </p>
                     
                             
                     <p><a name="misc-params-network-pa4b"></a>Ju mund t&euml; keni nevoj&euml; t&euml; konsultoheni me administratorin e sistemeve tuaja
                        p&euml;r t&euml; marr&euml; parametrat q&euml; ju nevojiten p&euml;r t&euml; hyr&euml; k&euml;tu.
                     </p>
                           
                  </li>
               </ul>
            </div>
              
         </div>
         
           
         <div class="section" title="Siguria">
            <div class="titlepage">
               <div>
                  <div>
                     <h3 class="title"><a name="misc-params-security"></a>Siguria
                     </h3>
                  </div>
               </div>
            </div>
                
            
                
            <div class="itemizedlist">
               <ul class="itemizedlist">
                  <li class="listitem">
                             
                     <p><a name="misc-params-security-pa1"></a><span class="bold"><strong>Niveli Siguris&euml;</strong></span></p>
                     
                             
                     <p><a name="misc-params-security-pa1a"></a>Niveli i siguris&euml; p&euml;r kompjuterin tuaj, n&euml; shumic&euml;n e rasteve cil&euml;simi i
                        parazgjedhur (Standard) &euml;sht&euml; adekuat p&euml;r p&euml;rdorim t&euml; p&euml;rgjithsh&euml;m. Zgjidhni
                        alternativ&euml;n q&euml; i p&euml;rshtatet m&euml; mir&euml; p&euml;rdorimit tuaj.
                     </p>
                           
                  </li>
                  <li class="listitem">
                             
                     <p><a name="misc-params-security-pa2"></a><span class="bold"><strong>Firewall</strong></span></p>
                     
                             
                     <p><a name="misc-params-security-pa2b"></a>Firewall ju lejon t&euml; administroni lidhjet e rrjetit t&euml; lejuara n&euml;
                        kompjuterin tuaj. Parazgjedhja e ruajtjes dhe e sigurt &euml;sht&euml; lejimi i
                        lidhjeve p&euml;r hyrje n&euml; ZERO. Kjo nuk ju pengon t&euml; lidhje t&euml; jashtme dhe t&euml;
                        p&euml;rdorni kompjuterin tuaj normalisht.
                     </p>
                     
                             
                     <p>Ju lutemi t&euml; jeni t&euml; vet&euml;dijsh&euml;m se interneti &euml;sht&euml; nj&euml; rrjet me rrezik t&euml;
                        lart&euml; ku ka p&euml;rpjekje t&euml; vazhdueshme p&euml;r t&euml; hetuar dhe sulmuar
                        sistemet. Edhe n&euml;se lidhjet si ICMP (p&euml;r ping) duken t&euml;
                        <span class="quote">&#8220;<span class="quote">sigurta</span>&#8221;</span>jan&euml; p&euml;rdorur si kanale t&euml; fshehta t&euml; t&euml; dh&euml;nave p&euml;r
                        t&euml; dh&euml;nat e filtrave nga persona me q&euml;llim t&euml; keq.
                     </p>
                     
                             
                     <p>P&euml;r m&euml; shum&euml; informacion, shih <a class="xref" href="firewall.html" title="Mur i Zjarrt">Mur i Zjarrt</a>.
                     </p>
                     
                             
                     <div class="warning" title="Paralajm&euml;rim" style="margin-left: 0.5in; margin-right: 0.5in;">
                        <table border="0" summary="Warning">
                           <tr>
                              <td rowspan="2" align="center" valign="top" width="25"><img alt="[Paralajm&euml;rim]" src="warning.png"></td>
                              <th align="left"></th>