Curs 7. Servicii de file sharing. 17 noiembrie Gestiunea Serviciilor de Rețea. GSR Curs 7, Servicii de file sharing 1/45

Size: px
Start display at page:

Download "Curs 7. Servicii de file sharing. 17 noiembrie Gestiunea Serviciilor de Rețea. GSR Curs 7, Servicii de file sharing 1/45"

Transcription

1 Curs 7 Servicii de file sharing Gestiunea Serviciilor de Rețea 17 noiembrie 2011 GSR Curs 7, Servicii de file sharing 1/45

2 Moto Jesus saves! The rest of us better make backups. GSR Curs 7, Servicii de file sharing 2/45

3 Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 3/45

4 Suport Unix and Linux System Administration Chapter 8 Storage (Section Storage area networking ) Chapter 18 The Network File System Chapter 30 Cooperating with Windows (Section Sharing files with Samba and CIFS ) Professional Linux System Administration Chapter 12 File and Print Sharing GSR Curs 7, Servicii de file sharing 4/45

5 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 5/45

6 Partajarea fișierelor file sharing distribuție de conținut/date/informație probleme drepturi de acces autentificare consum de resurse (lățime de bandă) interfață de utilizare scalabilitate număr de utilizatori, număr de accese HTTP/FTP, Peer-to-Peer, SSH, rsync, NFS, Samba GSR Curs 7, Servicii de file sharing 6/45

7 HTTP/FTP HTTP universal disponibil, număr mare clienți (browsere) suport de securitate (HTTPS) număr mare de aplicații nu are implicit suport pentru transferuri parțiale wget --continue folosit, în general pentru download; pentru upload se folosește SSH/FTP necesită acces și configurări la nivel de server FTP din ce în ce mai puțin utilizat suport redus comparativ cu HTTP suport de securitate: autentificare, FTPS nu are suport implicit pentru transferuri parțiale folosit pentru upload; un avantaj față de SSH este rapiditatea posibile probleme de acces (active mode, passive mode) GSR Curs 7, Servicii de file sharing 7/45

8 WebDAV web-based distributed authoring and versioning authoring a activ, versioning mai târziu (extensia Delta-V) makes the web a readable and writable medium noi metode și headere în HTTP mod dav în Apache în Linux, davfs2, fusedav, cadaver (CLI) util pentru sisteme de control al versiunii (Git, SVN): URL-uri read-write peste HTTP(S) extensii: Delta-V, CalDAV, CardDAV, GroupDAV GSR Curs 7, Servicii de file sharing 8/45

9 Protocoale Peer-to-Peer nu necesită un server upload/download facil transfer parțial distribuție rapidă scalabilitate probleme cu NAT, firewall utile pentru număr mare de clienți/peeri în general fără forme de securitate/drepturi de acces GSR Curs 7, Servicii de file sharing 9/45

10 SSH/rsync SSH (scp) transfer securizat (probabil cea mai sigură metodă) necesită cont și server formă preferată de upload nu există download public (anonim) se preferă HTTP sau protocoale peer-to-peer fără suport de transfer parțial (use rsync) rsync cel mai bun suport de transfer parțial actualizări ale conținutului se transferă doar ce diferă (delta encoding) util pentru mirroring și backup-uri poate folosi wrapper cu SSH GSR Curs 7, Servicii de file sharing 10/45

11 NFS/Samba NFS, SMB/CIFS, DFS, AFS NFS (Network File System) montare locală (mount -t nfs) acces transparent acces la server configurare relativ facilă suport de securitate controlul accesului sistem de fișiere partajat Samba implementare a SMB/CIFS compatibilitate cu sisteme Windows acces la server configurare complexă; se poate folosi SWAT suport de securitate montare locală cu smbmount, smbfs GSR Curs 7, Servicii de file sharing 11/45

12 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 12/45

13 scp reminder scp sursă destinație upload folosit în colaborare cu alte protocoale scp file.txt scp -r code/ download folosit doar în situațiile ce necesită securitate; în rest, HTTP scp -r GSR Curs 7, Servicii de file sharing 13/45

14 rsync sincronizarea fișierelor între două sisteme minimizarea transferului se transmit, în măsura posibilului, doar datele diferite delta encoding înlocuitor pentru scp sintaxă similară pentru client Andrew Tridgell backups mirroring GSR Curs 7, Servicii de file sharing 14/45

15 rsync daemon rsync --daemon port implicit 873 pentru configurare pe Debian editat /etc/default/rsync RSYNC ENABLE=true /etc/init.d/rsync start stop restart Configurare în /etc/rsyncd.conf man rsyncd.conf format.ini (similar cu Samba) cat /etc/rsyncd.conf [code] path = /home/razvan/code comment = Razvan s code GSR Curs 7, Servicii de file sharing 15/45

16 Client rsync implicit folosește un shell rsync localhost:code s password: drwxr-xr-x /11/13 09:40:02 code transfer folosind rsync daemon (de două ori două puncte : ) razvan@valhalla:/tmp$ rsync localhost::code drwxr-xr-x /11/13 09:40:02. -rw-r--r /11/13 09:40:02.gitignore drwxr-xr-x /11/13 09:41:14.git drwxr-xr-x /11/07 12:33:17 asm [...] argumente uzuale sunt -avz GSR Curs 7, Servicii de file sharing 16/45

17 rsync + SSH șir de căutare rsync ssh pe Google :-) opțiunea -e la rsync nu necesită server de rsync util pentru upload (sigur) rsync -avz -e ssh remoteuser@remotehost:/remote/dir /this/dir/ sincronizare rsync -avz -e ssh /this/dir remoteuser@remotehost:/remote/dir backup GSR Curs 7, Servicii de file sharing 17/45

18 rsync backup (cron) 1 #!/bin/bash 2 3 RSYNC=/usr/bin/rsync 4 SSH=/usr/bin/ssh 5 RUSER=so 6 RHOST=cursuri.cs.pub.ro 7 RPATH=/home/courses/so/public html/* 8 LPATH=/home/so/www/cs/ 9 #OPTS= -avz --include /wiki/images --exclude /wiki/* --exclude /wiki-old --exclude /Teme/note --exclude /Teme/upload --exclude /Teme/*.auth --exclude /functions.php 10 OPTS="-avz --exclude /wiki-old --exclude /Teme/note --exclude /Teme/upload --exclude /Teme/*.auth --exclude /functions.php" cd $LPATH && $RSYNC $OPTS -e $SSH $RUSER@$RHOST:$RPATH $LPATH GSR Curs 7, Servicii de file sharing 18/45

19 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 19/45

20 NFS protocol de acces la fișiere montare în rețea NFSv4 (RFC3010, RFC3530) inițial funcționa peste UDP, astăzi peste TCP RPC-based nu există un port pe care ascultă portmap (port mapper, rpcbind) TCP/UDP port 111 NFSv4.1 pnfs (scalable parallel access) GSR Curs 7, Servicii de file sharing 20/45

21 Configurare server NFS /etc/exports Ce se partajează? Ce stații au acces? Cu ce drept? anaconda:~# cat /etc/exports /home/razvan/public_html/pub (rw,sync,subtree_check) După modificarea /etc/exports se rulează comanda exportfs -ra GSR Curs 7, Servicii de file sharing 21/45

22 Client NFS montare mount anaconda.cs.pub.ro:/home/razvan/public_html/pub pub configurare /etc/fstab montare automată la pornire tail -1 /etc/fstab anaconda.cs.pub.ro:/home/razvan/public_html/pub /home/razvan/nfs/anaconda/ GSR Curs 7, Servicii de file sharing 22/45

23 Utilizări NFS directoare partajate la nivelul rețelei locale stocarea directoarelor home pe un singur sistem/server directoare cu executabile pe un singur sistem (dacă sunt sisteme identice) GSR Curs 7, Servicii de file sharing 23/45

24 Sisteme de fișiere pentru clustere Lustre (Linux cluster) high performance file system GlusterFS NAS file system cloud computing GSR Curs 7, Servicii de file sharing 24/45

25 SAN/NAS Storage Area Network discuri legate prin rețea la sistemele de procesare SCSI AoE, FC, HyperSCSI, iscsi Network Attached Storage sisteme dedicate care asigură stocarea elimină nevoia utilizării FreeNAS (stripped-down version of FreeBSD) GSR Curs 7, Servicii de file sharing 25/45

26 SAN/NAS (2) GSR Curs 7, Servicii de file sharing 26/45

27 iscsi Internet Small Computer System Interface SCSI commands over IP networks SCSI clients initiators SCSI storage devices targets SAN poate folosi infrastructura existentă (spre deosebire de FibreChannel) GSR Curs 7, Servicii de file sharing 27/45

28 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 28/45

29 Samba implementare free a SMB/CIFS SMB Server Message Block CIFS Common Internet File System Andrew Tridgell (rsync) network shares doi daemoni smbd serviciu de file/printer sharing nmbd serviciu de mapare NetBIOS-IP GSR Curs 7, Servicii de file sharing 29/45

30 Configurare Samba configurările se realizează în /etc/samba/smb.conf fișier format.ini (similar rsyncd.conf :-P) în zona [global] este importantă opțiunea netbios name nu apare implicit în fișierul de configurare anaconda:~# cat /etc/samba/smb.conf grep -v ^[#;] grep -v ^$ [global] workgroup = CS netbios name = anaconda server string = %h server dns proxy = no log file = /var/log/samba/log.%m max log size = 1000 syslog = 0 [...] GSR Curs 7, Servicii de file sharing 30/45

31 Configurare Samba (2) directive pentru creare share-uri implicit sunt partajate read-only directoarele home pentru verificarea configurației se folosește comanda testparm se folosește smbpasswd pentru adăugarea unui utilizator în Samba GSR Curs 7, Servicii de file sharing 31/45

32 Configurare Samba (3) se adaugă utilizatorul în configurarea Samba anaconda:~# smbpasswd -a razvan New SMB password: Retype new SMB password: Testare configurație smbclient -L //anaconda -U razvan Enter razvan s password: Domain=[CS] OS=[Unix] Server=[Samba ] Sharename Type Comment print$ Disk Printer Drivers IPC$ IPC IPC Service (anaconda server) lp Printer Generic dot-matrix printer entry razvan Disk Home Directories Domain=[CS] OS=[Unix] Server=[Samba ] GSR Curs 7, Servicii de file sharing 32/45

33 Client Samba smbclient interfața FTP-like smbclient //anaconda/rd-pub -U razvan Enter razvan s password: Domain=[CS] OS=[Unix] Server=[Samba ] smb: \> get i386-cds.torrent getting file \i386-cds.torrent of size as i386-cds.torrent (490.3 KiloBytes/sec) (aver smb: \> exit smbmount montarea share-ului în sistemul local de fișiere $ smbmount //anaconda/rd-pub pub -o username=razvan,password=statesecret $ smbumount pub GSR Curs 7, Servicii de file sharing 33/45

34 Client Samba (2) smbmount apelează mount.cifs man smbmount (identic cu man mount.cifs) mount.cifs montare/demontare mount -t cifs //anaconda/rd-pub pub -o username=razvan,password=roseb umount pub se poate configura /etc/fstab pentru pornire la boot GSR Curs 7, Servicii de file sharing 34/45

35 Client Samba (3) aplicații GUI în Windows, integrat în Explorer (file sharing) pe Linux, suport integrat în KDE, GNOME URL de forma smb://netbios-name/share-name intrări de tipul View Network GSR Curs 7, Servicii de file sharing 35/45

36 SWAT Samba Web Administration Tool pe Debian apt-get install swat ascultă conexiuni pe portul 901 se recomandă securizarea (certificat digital) accesului la port GSR Curs 7, Servicii de file sharing 36/45

37 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 37/45

38 Protocolul FTP File Transfer Protocol transfer de fișiere RFC aprilie 1971 control connection data connection active mode conexiune de date de la server la client passive mode conexiune de date de la client la server implicit nesigur FTPS, SFTP/SCP anonymous FTP GSR Curs 7, Servicii de file sharing 38/45

39 Clienți/severe FTP BulletProof FTP, CrushFTP Server, FileZilla Server ProFTPD, Pure-FTPd, vsftpd FileZilla, WinSCP, Total Commander curl, ftp, lftp, ncftp GSR Curs 7, Servicii de file sharing 39/45

40 FTPS vs. SFTP Pros cunoscut transfer server-to-server autentificare SSL/TLS suport FTP + SSL/TLS în multe framework-uri Cons necesită un canal de date secundar nu toate serverele FTP oferă suport SSL/TLS nu toți clienții FTP oferă suport SSL/TLS Pros o singură conexiune (nu există canal de date) conexiune permanent securizată operații pentru modificarea drepturilor de acces Cons gestiune mai dificilă a cheilor SSH nu există suport SSH/SFTP în diverse framework-uri GSR Curs 7, Servicii de file sharing 40/45

41 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 41/45

42 Ce folosim în situația X? upload de fișiere: scp, SFTP, FTPS upload constant/sincronizare/backup/mirroring: RSYNC download de fișiere publice: HTTP, anon-ftp download de fișiere în mod securizat: SCP, SFTP, FTPS distribuție de fișiere de mari dimensiuni: BitTorrent folosirea unei singure instanțe de directoare home, date cu acces comun: NFS interacțiune cu sisteme Windows, printer sharing: Samba partajarea codului, code versioning: SCM/VCS (Git, Subversion, Mercurial, Darcs, Bazaar) GSR Curs 7, Servicii de file sharing 42/45

43 Cuvinte cheie WebDAV SSH file-sharing SSH, scp rsync rsync daemon /etc/rsyncd.conf NFS RPC NAS SAN iscsi nfs-kernel-server /etc/exports mount -t nfs Samba /etc/samba/smb.conf smbclient smbmount mount -t cifs SWAT sshfs FTP FTPS/SFTP GSR Curs 7, Servicii de file sharing 43/45

44 Resurse utile GSR Curs 7, Servicii de file sharing 44/45

45 Outline Partajarea fișierelor SSH. rsync NFS Samba FTP Încheiere Întrebări GSR Curs 7, Servicii de file sharing 45/45

Curs 11. Servicii Web. 5 ianuarie Gestiunea Serviciilor de Rețea. GSR Curs 11, Servicii Web 1/42

Curs 11. Servicii Web. 5 ianuarie Gestiunea Serviciilor de Rețea. GSR Curs 11, Servicii Web 1/42 Curs 11 Servicii Web Gestiunea Serviciilor de Rețea 5 ianuarie 2012 GSR Curs 11, Servicii Web 1/42 Moto A journey of a thousand sites begins with a single click. The Internet is full. Go away. GSR Curs

More information

RHCE BOOT CAMP. File Sharing Services. Wednesday, November 28, 12

RHCE BOOT CAMP. File Sharing Services. Wednesday, November 28, 12 RHCE BOOT CAMP File Sharing Services NFS The Network File Service, or NFS, is used to share data with other servers. For this service to work properly, portmap and nfs-utils rpms must be installed, and

More information

SISTEME DE OPERARE (SO) CURS 10. Asist. Univ. Dr. Mihai Stancu. Virtualizare

SISTEME DE OPERARE (SO) CURS 10. Asist. Univ. Dr. Mihai Stancu. Virtualizare SISTEME DE OPERARE (SO) CURS 10 Asist. Univ. Dr. Mihai Stancu Virtualizare S u p o r t d e c u r s Virtual Machines Versatile Platforms for Systems and Processes Capitolul 1 Introduction to Virtual Machines

More information

Design activities. Session III. 1. Topology. - Selecting and placing devices - Interconnecting devices

Design activities. Session III. 1. Topology. - Selecting and placing devices - Interconnecting devices Design activities Session I 1. Topology - Selecting and placing devices - Interconnecting devices 2. Providing connectivity between directly connected devices - Configuring addresses for servers and hosts

More information

Capitolul 4. Subnivelul Controlul Accesului la Mediu (MAC=Medium Access Control)

Capitolul 4. Subnivelul Controlul Accesului la Mediu (MAC=Medium Access Control) Capitolul 4 Subnivelul Controlul Accesului la Mediu (MAC=Medium Access Control) 1 The Channel Allocation Problem Static Channel Allocation in LANs and MANs Dynamic Channel Allocation in LANs and MANs Alocare

More information

7. Exploatarea vulnerabilităńilor

7. Exploatarea vulnerabilităńilor 7. Exploatarea vulnerabilităńilor Exploit-uri de securitate Program special conceput pentru a exploata vulnerabilităńile de securitate existente pe sistemele de calcul cu scopul compromiterii securităńii

More information

Ftp Command Line Manual Windows Username Password Linux

Ftp Command Line Manual Windows Username Password Linux Ftp Command Line Manual Windows Username Password Linux Midnight Commander is a console based full-screen text mode File Manager that allows you to copy, MC has many features which are useful for a user

More information

Ftp Command Line Manual Windows Passive Mode Linux

Ftp Command Line Manual Windows Passive Mode Linux Ftp Command Line Manual Windows Passive Mode Linux To Connect to Box with Command Line (Advanced users on Mac or Linux) Windows built-in ftp command line utility cannot support passive mode (even. open

More information

Proiectarea Rețelelor 1. Componentele hardware ale unui sistem de calcul

Proiectarea Rețelelor 1. Componentele hardware ale unui sistem de calcul Platformă de e-learning și curriculă e-content pentru învățământul superior tehnic Proiectarea Rețelelor 1. Componentele hardware ale unui sistem de calcul Integrated IS-IS 25 Noiembrie 2010 Proiectarea

More information

6. Identificarea vulnerabilităńilor

6. Identificarea vulnerabilităńilor 6. Identificarea vulnerabilităńilor VulnerabilităŃi Eroare de programare sau greşeală de configurare ce poate crea breşe în securitatea sistemelor Dacă nu sunt corectate la timp pot fi exploatate de către

More information

Administrarea sistemelor Linux

Administrarea sistemelor Linux Administrarea sistemelor Linux Cursul 11 Configurarea serviciilor sistemului partea IV Dragoş Acostăchioaie http://www.adt.ro dragos@adt.ro Cursul 11 Interactiunea cu sistemele Windows sistemul Samba Sistemul

More information

Network-based File Sharing (1)

Network-based File Sharing (1) Samba Let s Dance! Network-based File Sharing (1) NFS (UNIX-based) mountd is responsible for mount request nfsd and nfsiod Based on RPC CIFS (Microsoft) Common Internet File System 網路芳鄰 SMB (Server Message

More information

Proiectarea Rețelelor 32. Controlul modelelor de trafic in retea prin alterarea atributelor BGP

Proiectarea Rețelelor 32. Controlul modelelor de trafic in retea prin alterarea atributelor BGP Platformă de e-learning și curriculă e-content pentru învățământul superior tehnic Proiectarea Rețelelor 32. Controlul modelelor de trafic in retea prin alterarea atributelor BGP De ce ebgp? De ce ibgp?

More information

Lab #10: Using Linux with Microsoft Windows

Lab #10: Using Linux with Microsoft Windows CTEC1863/2017F Lab #10 Samba Page 1 of 11 Lab #10: Using Linux with Microsoft Windows In this lab, we turn Linux into a Microsoft Windows network server using Samba, "the free SMB and CIFS client and server

More information

CS 470 Spring Distributed Web and File Systems. Mike Lam, Professor. Content taken from the following:

CS 470 Spring Distributed Web and File Systems. Mike Lam, Professor. Content taken from the following: CS 470 Spring 2017 Mike Lam, Professor Distributed Web and File Systems Content taken from the following: "Distributed Systems: Principles and Paradigms" by Andrew S. Tanenbaum and Maarten Van Steen (Chapters

More information

Curs 4 Alexandru Bujor

Curs 4 Alexandru Bujor Curs 4 Alexandru Bujor ISO/OSI vs TCP/IP Conectori folositi Tipul de cablu Verificarea link-ului: ip link show Adresare la nivelul retelei locale Ethernet (L1 + L2) Adresa MAC Practic: Verificare cu ifconfig

More information

Ubuntu Sever Administration. Duration:40 Hrs

Ubuntu Sever Administration. Duration:40 Hrs Ubuntu 12.04 Sever Administration Duration:40 Hrs 1. Introduction to Ubuntu Linux Ubuntu Server Ubuntu Server 12.04 Server Installation Alternatives and Options Server on the Desktop Installation Desktop

More information

Sisteme de operare 1. Sisteme de operare. Roluri și descriere generală

Sisteme de operare 1. Sisteme de operare. Roluri și descriere generală Platformăde e-learning și curriculăe-content pentru Sisteme de operare 1. Sisteme de operare. Roluri și descriere generală De ce SO? sunt peste tot (PC, servere, smartphones) administrarea eficientă a

More information

CS 470 Spring Distributed Web and File Systems. Mike Lam, Professor. Content taken from the following:

CS 470 Spring Distributed Web and File Systems. Mike Lam, Professor. Content taken from the following: CS 470 Spring 2018 Mike Lam, Professor Distributed Web and File Systems Content taken from the following: "Distributed Systems: Principles and Paradigms" by Andrew S. Tanenbaum and Maarten Van Steen (Chapters

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

Curs practic de Java

Curs practic de Java Curs practic de Java Curs - Cristian Frăsinaru acf@infoiasi.ro Facultatea de Informatică Universitatea Al. I. Cuza Iaşi Internaţionalizarea Curs practic de Java p.1/1 Cuprins Introducere Clasa Locale Formatarea

More information

Administrarea sistemelor Linux

Administrarea sistemelor Linux Administrarea sistemelor Linux Cursul 3 Notiuni Linux de baza partea II Dragoş Acostăchioaie http://www.adt.ro FHS (www.pathname.com/fhs/) Sisteme de fisiere Structura standard de directoare /bin comenzile

More information

Laborator 5 Instrucțiunile repetitive

Laborator 5 Instrucțiunile repetitive Laborator 5 Instrucțiunile repetitive Instrucțiunea for Instrucțiunea for permite repetarea unei secvențe de instrucțiuni atâta timp cât o condiție este îndeplinita. În plus, oferă posibilitatea execuției

More information

Tehnici avansate de programare

Tehnici avansate de programare Tehnici avansate de programare Curs - Cristian Frăsinaru acf@infoiasi.ro Facultatea de Informatică Universitatea Al. I. Cuza Iaşi Adnotarea elementelor Tehnici avansate de programare p.1/1 Cuprins Ce sunt

More information

Cursul 10. Servicii de rețea. 5 decembrie 2011

Cursul 10. Servicii de rețea. 5 decembrie 2011 Cursul 10 10 Servicii de rețea 5 decembrie 2011 Moto Give a person a fish and you feed them for a day; teach that person to use the Internet and they won't bother you for weeks. Home is where you hang

More information

Utilizarea formularelor in HTML

Utilizarea formularelor in HTML Utilizarea formularelor in HTML Formulare Un formular este constituit din elemente speciale, denumite elemente de control (controls), cum ar fi butoane radio, butoane de validare, câmpuri text, butoane

More information

Aplicatii Rapide, Scalabile si Rezistente

Aplicatii Rapide, Scalabile si Rezistente Capabilitati De Echilibrare A Sarcinilor Pe Servere HP Sistemul de echilibrare a sarcinilor HP foloseste tehnologii jetnexus de tip Application Delivery Control pentru cresterea performantei, scalabilitatii

More information

Servicii de securitate

Servicii de securitate Cursul 6 6 Servicii de securitate 12 noiembrie 2009 Moto There are two types of encryption: one that will prevent your sister from reading your diary and one that will prevent your government. Bruce Schneier

More information

Introducere. 1 Martie

Introducere. 1 Martie Introducere 1 Martie Welcome! He who asks is a fool for five minutes but he who does not ask remains a fool forever. 2 Structura cursului No. Titlu Data 1. IP, DHCP şi NAT 1 Martie 2. DNS 8 Martie 3. IP

More information

Aplicatii Client-Server

Aplicatii Client-Server Aplicatii Client-Server BOOTP, DHCP, TELNET Gabriel Ciobanu Facultatea de Informatică Universitatea A.I. Cuza, Iaşi gabriel@info.uaic.ro Nivel Aplicatie Dorin Huzum (dorin.huzum@infoiasi.ro) Sinică Alboaie

More information

1) folosirea unui microprocessor extern conectat la FPGA folosind un bus standard (ex. AMBA) - Advanced Microcontroller Bus Architecture

1) folosirea unui microprocessor extern conectat la FPGA folosind un bus standard (ex. AMBA) - Advanced Microcontroller Bus Architecture Procesoare in sisteme bazate pe FPGA La proiectarea unui sistem integrat într-un FPGA, vom avea nevoie de cel mai probabil, o anumită formă de "control" în sistemul nostru. Acest controler poate fi un

More information

About Backup and Restore, on page 1 Supported Backup and Restore Procedures, on page 3

About Backup and Restore, on page 1 Supported Backup and Restore Procedures, on page 3 About, on page 1 Supported Procedures, on page 3 Back Up Automation Data Using the GUI, on page 4 Restore Automation Data Using the GUI, on page 6 Schedule a Backup of Automation Data Using the GUI, on

More information

Ftp Command Line Manual Windows User Password

Ftp Command Line Manual Windows User Password Ftp Command Line Manual Windows User Password SSH Guide SFTP on Mac OS X SFTP on Windows The most straight forward way to use SFTP is through the command line. a command line, you can alternately use an

More information

Ingineria Sistemelor de Programare. UML Diagrama Cazurilor de Utilizare 2016

Ingineria Sistemelor de Programare. UML Diagrama Cazurilor de Utilizare 2016 Ingineria Sistemelor de Programare UML Diagrama Cazurilor de Utilizare mihai.hulea@aut.utcluj.ro 2016 Introducere UML UML UML = Unified Modeling Language Dezvoltat in cadrul Object Management Group In

More information

Fişiere in C++ Un fişier este o colecţie de date indicat printr-un nume şi o extensie. Numele este desparţit de extensie prin punct.

Fişiere in C++ Un fişier este o colecţie de date indicat printr-un nume şi o extensie. Numele este desparţit de extensie prin punct. Fişiere in C++ Un fişier este o colecţie de date indicat printr-un nume şi o extensie. Numele este desparţit de extensie prin punct. Avantajul lucrului cu fisiere este evident, datele rezultate în urma

More information

Setări de securitate. Aplicaţia MBSA

Setări de securitate. Aplicaţia MBSA Setări de securitate. Aplicaţia MBSA 1. Introducere În prezent numărul şi complexitatea viruşilor sunt în creştere. Prin setări de securitate se urmăreşte protecţia sistemelor, fără limitarea utilizării

More information

Ftp Command Line Commands Linux Example Windows Put

Ftp Command Line Commands Linux Example Windows Put Ftp Command Line Commands Linux Example Windows Put Examples of typical uses of the command ftp. This lists the commands that you can use to show the directory contents, transfer files, and delete files.

More information

Manual utilizare PNI SmartCAM (Versiune ios)

Manual utilizare PNI SmartCAM (Versiune ios) 1 Manual utilizare PNI SmartCAM (Versiune ios) 2 1. Descriere software PNI SmartCAM (versiune ios) este un instrument pentru administrarea camerelor prin retea, ce pot fi adaugate manual sau prin cautare

More information

Manual Ftp Windows Server 2008 Firewall Port Forward

Manual Ftp Windows Server 2008 Firewall Port Forward Manual Ftp Windows Server 2008 Firewall Port Forward SMB/CIFS, FTP and WebDAV access is available allowing the use of existing client software to access the Alfresco data store. This allows you to browse

More information

Lenuta Alboaie Reţele de calculatoare

Lenuta Alboaie Reţele de calculatoare Programarea in retea - OOB- Lenuta Alboaie adria@info.uaic.ro 1 Cuprins Trimiterea si receptarea datelor in regim 2 Ideea: in timpul unei conexiuni cind sunt transmise date ( inband data ), si daca la

More information

Install and Configure Samba - CentOS 7

Install and Configure Samba - CentOS 7 CentOS 7 Samba Guide Page 1 of 11 Install and Configure Samba - CentOS 7 What is Samba and why should I use it? Samba is a service that allows Linux machines to access and share files, folders and printers

More information

RedHat Certified Engineer

RedHat Certified Engineer RedHat Certified Engineer Red Hat Certified Engineer (RHCE) is a performance-based test that measures actual competency on live systems. Called the "crown jewel of Linux certifications," RHCE proves an

More information

CONFIGURAREA UNUI SERVER IRC IN LINUX. Bica Bogdan *

CONFIGURAREA UNUI SERVER IRC IN LINUX. Bica Bogdan * CONFIGURAREA UNUI SERVER IRC IN LINUX Bica Bogdan * In this exemple i show how to configure an irc server based on ircd dameon named ircu.this is the main file name ircd.conf and the most important.configure

More information

Manual Ftp Windows Server 2008 Firewall Port Range

Manual Ftp Windows Server 2008 Firewall Port Range Manual Ftp Windows Server 2008 Firewall Port Range System Center 2012 Configuration Manager is a distributed client/server system. you might have to also allow some HTTP verbs and headers to traverse your

More information

Manual Ftp Windows Server 2008 Firewall Port Forwarding

Manual Ftp Windows Server 2008 Firewall Port Forwarding Manual Ftp Windows Server 2008 Firewall Port Forwarding SMB/CIFS, FTP and WebDAV access is available allowing the use of existing client software to access the Alfresco data store. This allows you to browse

More information

Platformă de e-learning și curriculă e-content pentru învățământul superior tehnic

Platformă de e-learning și curriculă e-content pentru învățământul superior tehnic Platformă de e-learning și curriculă e-content pentru învățământul superior tehnic Transmisia datelor multimedia in retele de calculatoare 28. O scurta istorie a compresiei audio: MPEG-1, MPEG-2, MPEG-

More information

Compatibility and Support Information Nasuni Corporation Boston, MA

Compatibility and Support Information Nasuni Corporation Boston, MA Information Nasuni Corporation Boston, MA Contents 1. Introduction... 1 2.... 1 2.1. Virtualization platforms... 1 3. Filers... 2 3.1. Filer properties... 2 3.2. Clients... 4 3.3. VSS... 7 3.4. Security...

More information

15. Creating a Samba Server in Knoppix v.3

15. Creating a Samba Server in Knoppix v.3 15. Creating a Samba Server in Knoppix v.3 Estimated Time: 60 minutes Objective In this lab, the student will start the samba service in Knoppix, allowing transfer of files to and from a indows XP computer

More information

Polarion Enterprise Setup 17.2

Polarion Enterprise Setup 17.2 SIEMENS Polarion Enterprise Setup 17.2 POL005 17.2 Contents Terminology......................................................... 1-1 Overview...........................................................

More information

Oracle - Oracle Linux 5 6 System Administration Ed 3

Oracle - Oracle Linux 5 6 System Administration Ed 3 Oracle - Oracle Linux 5 6 System Administration Ed 3 Code: Lengt h: URL: D74508GC30 5 days View Online The Oracle Linux 5 & 6 System Administration course covers a range of skills including installation,

More information

Elemente de securitate

Elemente de securitate Cursul 11 11 Elemente de securitate 12 decembrie 2011 Moto The only truly secure system is one that is powered off, cast in a block of concrete and sealed in a lead-lined room with armed guards - and even

More information

Oracle Linux System AdministrationNEW

Oracle Linux System AdministrationNEW Oracle University Contact Us: 1.800.529.0165 Oracle Linux System AdministrationNEW Duration: 5 Days What you will learn The Oracle Linux System Administration course covers a range of skills including

More information

Linux Bible. Negus, C. Table of Contents ISBN-13: Part I: Getting Started 1 Chapter 1: Starting with Linux 3

Linux Bible. Negus, C. Table of Contents ISBN-13: Part I: Getting Started 1 Chapter 1: Starting with Linux 3 Linux Bible Negus, C ISBN-13: 9781118218549 Table of Contents Introduction xxxiii Part I: Getting Started 1 Chapter 1: Starting with Linux 3 Understanding What Linux Is 4 Understanding How Linux Differs

More information

Oracle Linux 5 & 6 System Administration TOD

Oracle Linux 5 & 6 System Administration TOD Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Linux 5 & 6 System Administration TOD Duration: 5 Days What you will learn The Oracle Linux System Administration course

More information

Enable printing from Windows and Macs remotely through Linux Print server - Share Brother Printer DCP-1610W with Linux CUPS and Samba Windows Share

Enable printing from Windows and Macs remotely through Linux Print server - Share Brother Printer DCP-1610W with Linux CUPS and Samba Windows Share Enable printing from Windows and Macs remotely through Linux Print server - Share Brother Printer DCP-1610W with Linux CUPS and Samba Windows Share Author : admin I've recently bought a new Printer model

More information

Curs 2 DNS. 8 Martie

Curs 2 DNS. 8 Martie Curs 2 DNS 8 Martie Cuprins NetBIOS şi LLMNR DNS Concepte Dynamic DNS Funcţionarea unui client DNS DNS Tipuri de zone Zonă stub şi cerere condiţională Delegare de administrare 2 NetBIOS Rezolvarea de nume

More information

Oracle Linux 5 & 6 System Administration

Oracle Linux 5 & 6 System Administration Oracle University Contact Us: 1.800.529.0165 Oracle Linux 5 & 6 System Administration Duration: 5 Days What you will learn This Oracle Linux System Administration training helps you develop a range of

More information

Polarion 18 Enterprise Setup

Polarion 18 Enterprise Setup SIEMENS Polarion 18 Enterprise Setup POL005 18 Contents Terminology......................................................... 1-1 Overview........................................................... 2-1

More information

COLEGIUL TEHNIC VICTOR UNGUREANU CÂMPIA TURZII INSTALAREA SI CONFIGURAREA UNUI SERVER DNS PE WINDOWS SERVER 2003

COLEGIUL TEHNIC VICTOR UNGUREANU CÂMPIA TURZII INSTALAREA SI CONFIGURAREA UNUI SERVER DNS PE WINDOWS SERVER 2003 INSTALAREA SI CONFIGURAREA UNUI SERVER DNS PE WINDOWS SERVER 2003 DNS (Domain Name Service) este un protocol care translateaza numele de domenii in adrese IP. De exemplu numele de domeniu www.google.ro

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: +603 2299 3600, 1 800 80 6277 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you

More information

Universitatea Alexandru Ioan Cuza Facultatea de Informatică

Universitatea Alexandru Ioan Cuza Facultatea de Informatică Universitatea Alexandru Ioan Cuza Facultatea de Informatică Conf. Dr. Lenuța Alboaie adria@info.uaic.ro Cuprins Sisteme de fisiere caracteristici Sisteme de fisiere distribuite Vocabular Cerinte Aspecte

More information

Alocarea memoriei în C sub Linux

Alocarea memoriei în C sub Linux Costel Aldea Alocarea memoriei în C sub Linux Sunt trei funcţii C standard care se pot folosi pentru a aloca memorie: malloc(), calloc(), si realloc(). Prototipurile lor, după cum sunt definite în stdlib.h:

More information

Prepared by Shiba Ratna Tamrakar

Prepared by Shiba Ratna Tamrakar Lab on Package management with RPM and Yum 1. to install the package bind-utils #rpm -hiv bind-utils* Note: i for install, h for hash, v for verbose 2. to install the package bind-utils from URL ftp://www.xyz.com/rpms

More information

DEZVOLTAREA APLICATIILOR WEB CURS 1. Lect. Univ. Dr. Mihai Stancu

DEZVOLTAREA APLICATIILOR WEB CURS 1. Lect. Univ. Dr. Mihai Stancu DEZVOLTAREA APLICATIILOR WEB CURS 1 Lect. Univ. Dr. Mihai Stancu S u p o r t d e c u r s suport (Beginning JSP, JSF and Tomcat) Capitolul 1 Introducing JSP and Tomcat notiuni necesare SO Tehnologii Web

More information

Rezolvare fişă de laborator Java Iniţiere în limbajul Java

Rezolvare fişă de laborator Java Iniţiere în limbajul Java Rezolvare fişă de laborator Java Iniţiere în limbajul Java Ex 1: Scrie următorul program Java folosind JCreator apoi încercă să-l înţelegi. public class primulprg System.out.println("Acesta este primul

More information

GHID DE UTILIZARE A APLICAȚIEI MINISTRA PLAY PE SMART TV

GHID DE UTILIZARE A APLICAȚIEI MINISTRA PLAY PE SMART TV GHID DE UTILIZARE A APLICAȚIEI MINISTRA PLAY PE SMART TV TV Deschide aplicația Ministra Play din bara de jos a interfeței TV. Selectează aplicația Ministra Play utilizând cursorul telecomenzii. Apar 4

More information

Ftp Command Line Manual Windows Example Port 22

Ftp Command Line Manual Windows Example Port 22 Ftp Command Line Manual Windows Example Port 22 Session, Logging, Console/scripting mode, Operations, Configuration enables passive ( =on ) or active ( =off ) transfer mode (FTP protocol only). winscp.exe

More information

Cursul 7. Servicii de reţea. 17 noiembrie 2008

Cursul 7. Servicii de reţea. 17 noiembrie 2008 Cursul 7 7 Servicii de reţea 17 noiembrie 2008 Motto Give a person a fish and you feed them for a day; teach that person to use the Internet and they won't bother you for weeks. Home is where you hang

More information

CIS 192 Linux Lab Exercise

CIS 192 Linux Lab Exercise CIS 192 Linux Lab Exercise Lab 8: Samba Spring 2009 Lab 8: Samba The purpose of this lab is to share files among Windows and Linux hosts on a common network. The goal is to browse directories on the Linux

More information

CONFIGURING IBM STORWIZE. for Metadata Framework 6.3

CONFIGURING IBM STORWIZE. for Metadata Framework 6.3 CONFIGURING IBM STORWIZE for Metadata Framework 6.3 Publishing Information Software version 6.3.160 Document version 4 Publication date May 22, 2017 Copyright 2005-2017 Varonis Systems Inc. All rights

More information

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days Oracle Linux 7: System Administration Ed 2 Duration: 5 Days The Oracle Linux 7: System Administration course covers a range of skills including installation, using the Unbreakable Enterprise Kernel, configuring

More information

LOMBA KETERAMPILAN SISWA

LOMBA KETERAMPILAN SISWA LOMBA KETERAMPILAN SISWA SEKOLAH MENENGAH KEJURUAN TINGKAT NASIONAL XXV 2017 MODUL A LINUX ISLAND IT NETWORK SYSTEMS ADMINISTRATION LKS2017_ITNSA_MODUL_A 2 ISLAND A LINUX ISLAND CONTENTS This Test Project

More information

PNI SmartCAM. versiune Android. - manual de utilizare-

PNI SmartCAM. versiune Android. - manual de utilizare- PNI SmartCAM versiune Android - manual de utilizare- Introducere: Acest manual se refera la instalarea si utilizarea aplicatiei PNI SmartCAM, software necesar monitorizarii atat camerei cu IP PNI 631W,

More information

Fisiere text in Java.

Fisiere text in Java. Fisiere text in Java. Doru Anastasiu Popescu Prelucrarea fisierelor text in Java Aspecte teoretice: http://cursuri.cs.pub.ro/~poo/wiki/index.php/input/output http://upm.ro/intranet/ecalin/cd_educational/cd/javac/cap3.htm

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training

More information

Introducere in Maven. Information Type: Working Standard, Disclosure Range:, Information Owner: mihai.hulea, NTT DATA Romania

Introducere in Maven. Information Type: Working Standard, Disclosure Range:, Information Owner: mihai.hulea, NTT DATA Romania Introducere in Maven Build management tools Java build tools: Maven Gradle Ant + Ivy Build tools are programs that automate the creation of executable applications from source code. Building incorporates

More information

Setting up the Seagate D4 NAS with Hard Disk Sentinel Pro. By Gary Ryan. Adapted from:

Setting up the Seagate D4 NAS with Hard Disk Sentinel Pro. By Gary Ryan. Adapted from: Setting up the Seagate D4 NAS with Hard Disk Sentinel Pro By Gary Ryan Adapted from: https://www.hdsentinel.com/how_to_monitor_network_attached_storage_nas_status.php How to: monitor Network Attached Storage

More information

LPI202 - LPIC-2 Exam Prep (Course 2) (LPI202) HL966S

LPI202 - LPIC-2 Exam Prep (Course 2) (LPI202) HL966S Course data sheet LPI202 - LPIC-2 Exam Prep (Course 2) (LPI202) HL966S Prerequisites Supported distributions Course data sheet Page 1 Detailed course outline Module 5: Maintaining a Web Server Module 6:

More information

Oracle Linux 7: System Administration Ed 1 LVC

Oracle Linux 7: System Administration Ed 1 LVC Oracle University Contact Us: +27 (0)11 319-4111 Oracle Linux 7: System Administration Ed 1 LVC Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you develop

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

Ingineria Programării în Reţea ea (IPR) Unelte software utile în proiectarea şi i implementarea unei ea

Ingineria Programării în Reţea ea (IPR) Unelte software utile în proiectarea şi i implementarea unei ea Ingineria Programării în Reţea ea (IPR) Unelte software utile în proiectarea şi i implementarea unei aplicaţii ii de reţea ea Ping Instrumentul ul cel mai popular pentru testarea conectivităţii ii într-o

More information

Implementing a Primary Domain Controller for Windows 2000 Clients using Samba

Implementing a Primary Domain Controller for Windows 2000 Clients using Samba Operating Systems and Systems Integration Implementing a Primary Domain Controller for Windows 2000 Clients using Samba 1 Aim After completing this exercise, you will be able to install and perform basic

More information

Sisteme de programe pentru Retele de calculatoare Middleware

Sisteme de programe pentru Retele de calculatoare Middleware Categorii de programe Software de aplicatii Sisteme de programe pentru Retele de calculatoare Middleware Software de infrastructura Servicii middleware (1) Servicii de programare a reţelei Invoca serviciile

More information

Advanced VPNs. 18 aprilie 2011

Advanced VPNs. 18 aprilie 2011 Advanced VPNs 18 aprilie 2011 Obiective Soluții de remote access VPN IPSec SSL Cisco ASA Easy VPN soluție de remote-access IPSec VPN Fortinet Implementarea SSL VPN Web-VPN Tunnel-VPN Internet Browsing

More information

1. Să se determine de câte ori apare cifra c în scrierea în baza p a numărului n.

1. Să se determine de câte ori apare cifra c în scrierea în baza p a numărului n. Observatii: Codul de mai jos a fost realizat si testat pe pagina online: https://www.tutorialspoint.com/compile_pascal_online.php 1. Să se determine de câte ori apare cifra c în scrierea în baza p a numărului

More information

Setting Up SAMBA. And the response was: salmonberry samba sawtimber scramble. Thus, the name Samba was born.

Setting Up SAMBA. And the response was: salmonberry samba sawtimber scramble. Thus, the name Samba was born. Setting Up SAMBA Samba is the brainchild of Andrew Tridgell who currently heads the Samba development team from his home of Canberra, Australia. The project was born in 1991 when Andrew created a fileserver

More information

Securizarea rețelelor folosind sisteme dedicate 24. Soluții de remote-access VPN

Securizarea rețelelor folosind sisteme dedicate 24. Soluții de remote-access VPN Platformă de e-learning și curriculă e-content pentru învățământul superior tehnic Securizarea rețelelor folosind sisteme dedicate 24. Soluții de remote-access VPN Obiective Soluții de remote access VPN

More information

Network-based File Sharing

Network-based File Sharing Samba weicc Network-based File Sharing FTP (File Transfer Protocol) NFS (UNIX-based) mountd is responsible for mount request nfsd and nfsiod Based on RPC CIFS (Microsoft) Common Internet File System 網路芳鄰

More information

What's New in FreeNAS 9.3. Dru Lavigne Documentation Lead, ixsystems SCALE, February 21, 2015

What's New in FreeNAS 9.3. Dru Lavigne Documentation Lead, ixsystems SCALE, February 21, 2015 What's New in FreeNAS 9.3 Dru Lavigne Documentation Lead, ixsystems SCALE, February 21, 2015 What is FreeNAS? Open source NAS (network attached storage) based on FreeBSD (nanobsd) and released under a

More information

Ftp Get Command Line Linux Proxy Settings Via

Ftp Get Command Line Linux Proxy Settings Via Ftp Get Command Line Linux Proxy Settings Via How to change system proxy settings from the command line on Ubuntu desktop gsettings get _schema key_ If you want to change HTTPS/FTP proxy to manual as well,

More information

File Transfer: Basics and Best Practices. Joon Kim. Ph.D. PICSciE. Research Computing 09/07/2018

File Transfer: Basics and Best Practices. Joon Kim. Ph.D. PICSciE. Research Computing 09/07/2018 File Transfer: Basics and Best Practices Joon Kim. Ph.D. PICSciE Research Computing Workshop @Chemistry 09/07/2018 Our goal today Learn about data transfer basics Pick the right tool for your job Know

More information

Manual Ftp Windows 7 Command Line Passive

Manual Ftp Windows 7 Command Line Passive Manual Ftp Windows 7 Command Line Passive Accessing FTP server behind a proxy via command prompt in Windows 7 where I downloaded and the documentation gnu.org/software/wget/manual/wget.pdf. You have to

More information

Paradigma RPC. Lenuta Alboaie

Paradigma RPC. Lenuta Alboaie Paradigma RPC Lenuta Alboaie adria@info.uaic.ro 2015 2016 Reţele de calculatoare http://www.info.uaic.ro/~adria 1 Cuprins Remote Procedure Call (RPC) Preliminarii Caracterizare XDR Functionare Implementari

More information

Cursul X decembrie 2011

Cursul X decembrie 2011 Cursul 12 12 802.1X 20-21 decembrie 2011 Obiective Recapitulare: Securitatea în rețele Protocolul 802.1X RADIUS Exemplu de funcționare 802.1X MACsec Configurare 802.1X 2 Cursul 12 Recapitulare Riscuri

More information

LENS Server Maintenance Guide JZ 2017/07/28

LENS Server Maintenance Guide JZ 2017/07/28 LENS Server Maintenance Guide JZ 2017/07/28 Duty Maintain LENS server with minimum downtime Patch critical vulnerabilities Assist LAB member for using the LENS services Evaluate for custom requirements

More information

Ghid de conectare. Sisteme de operare acceptate. Instalarea imprimantei utilizând CD-ul Software şi documentaţie.

Ghid de conectare. Sisteme de operare acceptate. Instalarea imprimantei utilizând CD-ul Software şi documentaţie. Pagina 1 din 6 Ghid de conectare Sisteme de operare acceptate Utilizând CD-ul software, puteţi instala software-ul imprimantei pentru următoarele sisteme de operare: Windows 8.1 Windows Server 2012 R2

More information

CENG 334 Computer Networks. Laboratory I Linux Tutorial

CENG 334 Computer Networks. Laboratory I Linux Tutorial CENG 334 Computer Networks Laboratory I Linux Tutorial Contents 1. Logging In and Starting Session 2. Using Commands 1. Basic Commands 2. Working With Files and Directories 3. Permission Bits 3. Introduction

More information

Curs 9. Accelerarea accesului web. 9 mai Servicii avansate pentru ISP. SAISP Curs 9, Accelerarea accesului web 1/43

Curs 9. Accelerarea accesului web. 9 mai Servicii avansate pentru ISP. SAISP Curs 9, Accelerarea accesului web 1/43 Curs 9 Accelerarea accesului web Servicii avansate pentru ISP 9 mai 2017 SAISP Curs 9, Accelerarea accesului web 1/43 Outline Nevoia de accelerare Accelerarea web Varnish Administrare Varnish Concluzii

More information

Ftp Get Command Line Windows 7 Bootable Usb

Ftp Get Command Line Windows 7 Bootable Usb Ftp Get Command Line Windows 7 Bootable Usb How to make Windows 7 bootable install USB stick Open command prompt as administrator - Right click on Start _ All Programs _ Accessories _ Command. 7. Command

More information

Presented by Kelly Leveille and Kevin McGregor. May 13, 2008

Presented by Kelly Leveille and Kevin McGregor. May 13, 2008 NAS Smackdown Presented by Kelly Leveille and Kevin McGregor May 13, 2008 What is NAS? A self-contained computer connected to a network, with the sole purpose of supplying filebased data storage services

More information