SlideShare uma empresa Scribd logo
1 de 54
LINUX ,[object Object],[object Object]
BASIC COMMANDS IN LINUX ,[object Object],cal: Command to see calender for any specific month  or a complete year cal [ [month] year] $ cal april 2009 April 2009 Su Mo Tu We Th Fr  Sa 1 2 3  4 5 6 7 8 9 10  11 12 13 14 15 16 17  18 19 20 21 22 23 24  25 26 27 28 29 30
[object Object],date: displays the current date $ date Tue Jun  1 21:35:34 IST 2010 ,[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],passwd command allows you to change your password kuteer: ̃/workshop$ passwd Changing password for srihari. (current) UNIX password: Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully
[object Object],who command tells you the users currently logged  on to the system kuteer: ̃$ who srihari pts/0 2009-04-15  11:58  (:10.129.41.3) nithin pts/1 2009-04-15  16:09  (:10.129.20.5) avadhut pts/2 2009-04-13  14:39  (:10.129.45.20) anil pts/3  2009-04-13  16:32  (:10.129.23.45)
[object Object],man displays the documentation for a command usage: man <command name> ls - list directory contents SYNOPSIS ls [OPTION]... [FILE]... DESCRIPTION List information about the  FILEs (the none of -cftuvSUX nor --sort.
Linux file system Standard directory structure / - the topmost /dev - all the devices are accessible as files /var - “variable” data such as mails, log files, databases /usr - almost all the packages installed /etc - configuration files /home - home directories for all the users /root - home directory of the privileged user root /mnt - used to mount other directories/partitions.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object]
ADVANCE LINUX COMMANDS: ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object]
APACHE : ,[object Object],[object Object],[object Object]
DOWNLOAD : The best place to get Apache is from the Apache HTTP Server  download site. Download the sources appropriate to your system. EXTRACT THE FILES: ,[object Object],[object Object],[object Object],[object Object]
INSTALLATION : SERVER ROOT : ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
DocumentRoot  &quot;/opt/lampp/htdocs&quot; Each directory to which Apache has access can be configured with respect to which services and features are allowed and/or disabled in that# directory (and its subdirectories).  CONFIGURING : ,[object Object]
* mod_alias - to map different parts of the URL tree * mod_include - to parse Server Side Includes * mod_mime - to associate file extensions with its MIME-type * mod_rewrite - to rewrite URLs on the fly * mod_speling (sic) - to help your readers who might misspell URLs * mod_ssl - to allow for strong cryptography using SSL * mod_userdir - to allow system users to have their own Web page  directories
BUILD : As with any source installation, you'll then need to build the installation: make make install  CUSTAMIZE : Assuming that there were no problems, you are ready to customize your Apache configuration. This really just amounts to editing the httpd.conf file. This file is located in the PREFIX/conf directory.
TEST YOUR SERVER : Open a Web browser on the same machine and type http://localhost/ in the address box. You should see a page similar to the one in the partial screen shot above
PHP : ,[object Object],[object Object],[object Object]
INSTALLATION : To install PHP5 you can enter the following command in the terminal prompt:  sudo apt-get install php5 libapache2-mod-php5 ,[object Object],sudo apt-get install php5-cli
[object Object],sudo apt-get install php5-cgi ,[object Object],sudo apt-get install php5-mysql
Similarly, to use PostgreSQL with PHP5 you should install php5-pgsql package. To install php5-pgsql you can enter the following command in the terminal prompt:  sudo apt-get install php5-pgsql CONFIGURATION : By default, the Apache 2 Web server is configured to run PHP5 scripts. In other words, the PHP5 module is enabled in Apache2 Web server automatically when you install the module. Please verify if the files /etc/apache2/mods-enabled/php5.conf and /etc/apache2/mods-enabled/php5.load  exist. If they do not exists, you can enable the module using a2enmod command.
[object Object],sudo /etc/init.d/apache2 restart  TESTING : ,[object Object],<?php print_r (phpinfo()); ?>
MYSQL : ,[object Object],[object Object]
[object Object],sudo apt-get install mysql-server ,[object Object],sudo netstat -tap | grep mysql INSTALLATION :
[object Object],tcp  0  0 localhost.localdomain:mysql  *:*LISTEN - ,[object Object],sudo /etc/init.d/mysql restart
CONFIGURATION : You can edit the /etc/mysql/my.cnf file to configure the basic settings -- log file, port number, etc. For example, to configure MySQL  to listen for connections from network hosts, change the bind_address directive to the server's IP address:  bind-address  = 192.168.0.5
After making a change to /etc/mysql/my.cnf the mysql  daemon will need to be restarted:  sudo /etc/init.d/mysql restart
AJAX  or Asynchronous Javascript and XML, is the building blocks of Web 2.0 sites. AJAX can serve as an XML data transport layer or returning pre-formed HTML then injected into the browser DOM. Considered by many to be a mesh of DHTML and XMLHttpRequest this technology allows AJAX developers to provide rich content experiences without constant page reloads AJAX :
Send a Request To a Server ,[object Object],xmlhttp.open(&quot;GET&quot;,&quot;ajax_info.txt&quot;,true); xmlhttp.send();
METHOD DESCRIPTION open(method,url,async) open(method,url,async)  Specifies the type of request, the URL, and if the request should be handled asynchronously or not. method: the type of request: GET or POST url: the location of the file on the server async: true (asynchronous) or false (synchronous) send(string) Sends the request off to the server. string: Only used for POST requests
SERVER RESPONSE : ,[object Object],PROPERTY DESCRIPTION Response Text Get the response data as a string Response XML Get the response data as XML data
The responseText Property If the response from the server is not XML, use the responseText property. The responseText property returns the response as a string, and you can use it accordingly: EXAMPLE : document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText;
The responseXML Property If the response from the server is XML, and you want to parse it as an XML object, use the responseXML property:
CSS (Cascading Style Sheets) : Style sheets are a very powerful tool for the Web site developer. They give you the chance to be completely consistent with the look and feel of your pages, while giving you much more control over the layout and design than straight HTML ever did.
THE STYLES : One of the more common styles applied to HTML is the color and size of text. In HTML 3.2 you would create a blue H4 headline like this: <font color=&quot;#0000ff&quot;><h4>a blue headline</h4></font>
STYLE SHEETS : ,[object Object],The first in a two-part tutorial on Cascading Style Sheets, thisarticle explains how to create and use style rules across your Web site,and then demosntrates a few basic CSS properties.  Also included:inheritance, classes, contextual selectors and some lightbulb jokes.
STYLE SHEET : ,[object Object],The concluding part of this tutorial explores some of the CSS properties related to text alignment, spacing and positioning, together with a look at absolute and relative positioning, z-index stacking, and borders and padding. If you've been paying attention, you now know the basics of style sheets - what they are, how to use them, and how to link them to your Web pages - together with some of the important style sheet properties that control typeface and colour.
HTML : ,[object Object],[object Object],[object Object]
HTML Basic Document <html> <head> <title>Document name goes here</title> </head> <body> Visible text goes here... </body> </html>
Heading Elements <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6> Text Elements <p>This is a paragraph</p> <br /> (line break) <hr /> (horizontal rule) <pre>This text is preformatted</pre>
Logical Styles <em>This text is emphasized</em> <strong>This text is strong</strong> <code>This is some computer code</code> Physical Styles <b>This text is bold</b> <i>This text is italic</i>  Links, Anchors, and Image Elements <a href=&quot;http://www.example.com/&quot;>This is a Link</a> <a href=&quot;http://www.example.com/&quot;><img src=&quot;URL&quot; alt=&quot;Alternate Text&quot;></a> <a href=&quot;mailto:webmaster@example.com&quot;>Send e-mail</a>
A named anchor: <a name=&quot;tips&quot;>Useful Tips Section</a> <a href=&quot;#tips&quot;>Jump to the Useful Tips Section</a> Unordered list <ul> <li>First item</li> <li>Next item</li> </ul> Ordered list <ol> <li>First item</li> <li>Next item</li> </ol>
Definition list <dl> <dt>First term</dt> <dd>Definition</dd> <dt>Next term</dt> <dd>Definition</dd> </dl> Tables <table border=&quot;1&quot;> <tr> <th>Tableheader</th> <th>Tableheader</th> </tr> <tr> <td>sometext</td> <td>sometext</td> </tr> </table>
Frames <frameset cols=&quot;25%,75%&quot;> <frame src=&quot;page1.htm&quot; /> <frame src=&quot;page2.htm&quot; /> </frameset> Forms <form action=&quot;http://www.example.com/test.asp&quot; method=&quot;post/get&quot;> <input type=&quot;text&quot; name=&quot;email&quot; value=&quot;someone@example.com&quot; size=&quot;40&quot; maxlength=&quot;50&quot; /> <input type=&quot;password&quot; /> <input type=&quot;checkbox&quot; checked=&quot;checked&quot; /> <input type=&quot;radio&quot; checked=&quot;checked&quot; /> <input type=&quot;submit&quot; /> <input type=&quot;reset&quot; /> <input type=&quot;hidden&quot; />
<select> <option>Apples</option> <option selected=&quot;selected&quot;>Bananas</option> <option>Cherries</option> </select> <textarea name=&quot;comment&quot; rows=&quot;60&quot; cols=&quot;20&quot;></textarea> </form> Entities &lt; is the same as < &gt; is the same as > &#169; is the same as ©
Other Elements <!-- This is a comment --> <blockquote> Text quoted from a source. </blockquote> <address> Written by W3Schools.com<br /> <a href=&quot;mailto:us@example.org&quot;>Email us</a><br /> Address: Box 564, Disneyland<br /> Phone: +12 34 56 78 </address>
WEB 2.0 : ,[object Object],[object Object],[object Object]
RSS : The weblog has an RSS feed in place, subscribers to the blog can choose to be automatically notified of this new blog post.  RSS (or Really Simple Syndication), is a method for delivering regularly changing Web content. Many blogs and Internet publishers syndicate their content as an RSS Feed to allow people to subscribe to it easily. TAG : The content by users adding &quot;tags&quot; - short, usually one-word descriptions - to facilitate searching, without dependence on pre-made categories. Collections of tags created by many users within a single system may be referred to as &quot;folksonomies&quot;
TAXONOMY : Folk Taxonomy or Folxonomy allows users to create tags which means that you can have a virtually infinite set.  Systems that use folxonomy include Drupal, Joomla, Flickr, YouTube, Revver, and Google Video.  Taxonomies are used when: *  you don't know how many elements might need to be classified * when you need a classification system that can deal with disparate elements. * Folxonomy also creates structure, but it is much more organic than a taxonomy.ÂÂ
WYSIWYG : WYSIWYG is an acronym for What You See Is What You Get. The term is used in computing to describe a system in which content displayed during editing appears very similar to the final output, which might be a printed document, web page, slide presentation or even the lighting for a theatrical event ATOM : Atom is a simple way to read and write information on the web, allowing you to easily keep track of more sites in less time, and to seamlessly share your words and ideas by publishing to the web.

Mais conteúdo relacionado

Mais procurados

Anthony McKeown Drupal Presentation
Anthony McKeown Drupal PresentationAnthony McKeown Drupal Presentation
Anthony McKeown Drupal PresentationTony McKeown
 
Lpi Part 1 Linux Fundamentals
Lpi Part 1 Linux FundamentalsLpi Part 1 Linux Fundamentals
Lpi Part 1 Linux FundamentalsYemenLinux
 
Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Enrique Davila
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linuxnejadmand
 
Setting up LAMP for Linux newbies
Setting up LAMP for Linux newbiesSetting up LAMP for Linux newbies
Setting up LAMP for Linux newbiesShabir Ahmad
 
High Availability Server with DRBD in linux
High Availability Server with DRBD in linuxHigh Availability Server with DRBD in linux
High Availability Server with DRBD in linuxAli Rachman
 
Basic linux commands
Basic linux commands Basic linux commands
Basic linux commands Raghav Arora
 

Mais procurados (16)

Anthony McKeown Drupal Presentation
Anthony McKeown Drupal PresentationAnthony McKeown Drupal Presentation
Anthony McKeown Drupal Presentation
 
Apache
ApacheApache
Apache
 
Lpi Part 1 Linux Fundamentals
Lpi Part 1 Linux FundamentalsLpi Part 1 Linux Fundamentals
Lpi Part 1 Linux Fundamentals
 
Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16
 
RPM (LINUX)
RPM (LINUX)RPM (LINUX)
RPM (LINUX)
 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
 
Apache1.ppt
Apache1.pptApache1.ppt
Apache1.ppt
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linux
 
Refcard en-a4
Refcard en-a4Refcard en-a4
Refcard en-a4
 
Setting up LAMP for Linux newbies
Setting up LAMP for Linux newbiesSetting up LAMP for Linux newbies
Setting up LAMP for Linux newbies
 
Yum (Linux)
Yum (Linux) Yum (Linux)
Yum (Linux)
 
Final Report - Spark
Final Report - SparkFinal Report - Spark
Final Report - Spark
 
Unix Basics For Testers
Unix Basics For TestersUnix Basics For Testers
Unix Basics For Testers
 
High Availability Server with DRBD in linux
High Availability Server with DRBD in linuxHigh Availability Server with DRBD in linux
High Availability Server with DRBD in linux
 
Samba
SambaSamba
Samba
 
Basic linux commands
Basic linux commands Basic linux commands
Basic linux commands
 

Destaque

Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Saurav Pandey
 
Ccna Presentation
Ccna PresentationCcna Presentation
Ccna Presentationbcdran
 
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...Tarun Khaneja
 
Packet Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingPacket Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingJohnson Liu
 

Destaque (6)

CCNA ppt
CCNA pptCCNA ppt
CCNA ppt
 
CCNA presentation.
CCNA presentation.CCNA presentation.
CCNA presentation.
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
 
Ccna Presentation
Ccna PresentationCcna Presentation
Ccna Presentation
 
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...ccna summer training ppt ( Cisco certified network analysis) ppt.  by Traun k...
ccna summer training ppt ( Cisco certified network analysis) ppt. by Traun k...
 
Packet Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 RoutingPacket Tracer Simulation Lab Layer3 Routing
Packet Tracer Simulation Lab Layer3 Routing
 

Semelhante a Linux presentation (20)

Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technology
 
lamp technology
lamp technologylamp technology
lamp technology
 
Lamp technology
Lamp technologyLamp technology
Lamp technology
 
Nadhiya lamp
Nadhiya lampNadhiya lamp
Nadhiya lamp
 
Linux
LinuxLinux
Linux
 
Sandy Report
Sandy ReportSandy Report
Sandy Report
 
Sandy Report
Sandy ReportSandy Report
Sandy Report
 
Ppt
PptPpt
Ppt
 
Apache Web Server Setup 2
Apache Web Server Setup 2Apache Web Server Setup 2
Apache Web Server Setup 2
 
Divya
DivyaDivya
Divya
 
Divya
DivyaDivya
Divya
 
APACHE
APACHEAPACHE
APACHE
 
linux installation.pdf
linux installation.pdflinux installation.pdf
linux installation.pdf
 
Lamp ppt
Lamp pptLamp ppt
Lamp ppt
 
Linux
Linux Linux
Linux
 
Lamp ppt
Lamp pptLamp ppt
Lamp ppt
 
Unix Administration 2
Unix Administration 2Unix Administration 2
Unix Administration 2
 
Sahul
SahulSahul
Sahul
 
Sahul
SahulSahul
Sahul
 
Edubooktraining
EdubooktrainingEdubooktraining
Edubooktraining
 

Mais de Ajaigururaj R (17)

Chennai Guide
Chennai GuideChennai Guide
Chennai Guide
 
Chennai Guide
Chennai GuideChennai Guide
Chennai Guide
 
Chennai Guide
Chennai GuideChennai Guide
Chennai Guide
 
Year 2070
Year 2070Year 2070
Year 2070
 
Survey
SurveySurvey
Survey
 
Quiz on heart
Quiz on heartQuiz on heart
Quiz on heart
 
Quiz in cancer
Quiz in cancerQuiz in cancer
Quiz in cancer
 
Quiz in cancer
Quiz in cancerQuiz in cancer
Quiz in cancer
 
Quiz
QuizQuiz
Quiz
 
Diabetes
DiabetesDiabetes
Diabetes
 
Php
PhpPhp
Php
 
Linux commands
Linux commandsLinux commands
Linux commands
 
Wordpress
Wordpress Wordpress
Wordpress
 
Sample app
Sample appSample app
Sample app
 
Opensource and openlearning
Opensource and openlearningOpensource and openlearning
Opensource and openlearning
 
work Chart
work Chart work Chart
work Chart
 
Web2 ppt
Web2 pptWeb2 ppt
Web2 ppt
 

Último

The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 

Último (20)

The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 

Linux presentation

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8. Linux file system Standard directory structure / - the topmost /dev - all the devices are accessible as files /var - “variable” data such as mails, log files, databases /usr - almost all the packages installed /etc - configuration files /home - home directories for all the users /root - home directory of the privileged user root /mnt - used to mount other directories/partitions.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19. * mod_alias - to map different parts of the URL tree * mod_include - to parse Server Side Includes * mod_mime - to associate file extensions with its MIME-type * mod_rewrite - to rewrite URLs on the fly * mod_speling (sic) - to help your readers who might misspell URLs * mod_ssl - to allow for strong cryptography using SSL * mod_userdir - to allow system users to have their own Web page directories
  • 20. BUILD : As with any source installation, you'll then need to build the installation: make make install CUSTAMIZE : Assuming that there were no problems, you are ready to customize your Apache configuration. This really just amounts to editing the httpd.conf file. This file is located in the PREFIX/conf directory.
  • 21. TEST YOUR SERVER : Open a Web browser on the same machine and type http://localhost/ in the address box. You should see a page similar to the one in the partial screen shot above
  • 22.
  • 23.
  • 24.
  • 25. Similarly, to use PostgreSQL with PHP5 you should install php5-pgsql package. To install php5-pgsql you can enter the following command in the terminal prompt: sudo apt-get install php5-pgsql CONFIGURATION : By default, the Apache 2 Web server is configured to run PHP5 scripts. In other words, the PHP5 module is enabled in Apache2 Web server automatically when you install the module. Please verify if the files /etc/apache2/mods-enabled/php5.conf and /etc/apache2/mods-enabled/php5.load exist. If they do not exists, you can enable the module using a2enmod command.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30. CONFIGURATION : You can edit the /etc/mysql/my.cnf file to configure the basic settings -- log file, port number, etc. For example, to configure MySQL to listen for connections from network hosts, change the bind_address directive to the server's IP address: bind-address = 192.168.0.5
  • 31. After making a change to /etc/mysql/my.cnf the mysql daemon will need to be restarted: sudo /etc/init.d/mysql restart
  • 32. AJAX or Asynchronous Javascript and XML, is the building blocks of Web 2.0 sites. AJAX can serve as an XML data transport layer or returning pre-formed HTML then injected into the browser DOM. Considered by many to be a mesh of DHTML and XMLHttpRequest this technology allows AJAX developers to provide rich content experiences without constant page reloads AJAX :
  • 33.
  • 34. METHOD DESCRIPTION open(method,url,async) open(method,url,async) Specifies the type of request, the URL, and if the request should be handled asynchronously or not. method: the type of request: GET or POST url: the location of the file on the server async: true (asynchronous) or false (synchronous) send(string) Sends the request off to the server. string: Only used for POST requests
  • 35.
  • 36. The responseText Property If the response from the server is not XML, use the responseText property. The responseText property returns the response as a string, and you can use it accordingly: EXAMPLE : document.getElementById(&quot;myDiv&quot;).innerHTML=xmlhttp.responseText;
  • 37. The responseXML Property If the response from the server is XML, and you want to parse it as an XML object, use the responseXML property:
  • 38. CSS (Cascading Style Sheets) : Style sheets are a very powerful tool for the Web site developer. They give you the chance to be completely consistent with the look and feel of your pages, while giving you much more control over the layout and design than straight HTML ever did.
  • 39. THE STYLES : One of the more common styles applied to HTML is the color and size of text. In HTML 3.2 you would create a blue H4 headline like this: <font color=&quot;#0000ff&quot;><h4>a blue headline</h4></font>
  • 40.
  • 41.
  • 42.
  • 43. HTML Basic Document <html> <head> <title>Document name goes here</title> </head> <body> Visible text goes here... </body> </html>
  • 44. Heading Elements <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6> Text Elements <p>This is a paragraph</p> <br /> (line break) <hr /> (horizontal rule) <pre>This text is preformatted</pre>
  • 45. Logical Styles <em>This text is emphasized</em> <strong>This text is strong</strong> <code>This is some computer code</code> Physical Styles <b>This text is bold</b> <i>This text is italic</i> Links, Anchors, and Image Elements <a href=&quot;http://www.example.com/&quot;>This is a Link</a> <a href=&quot;http://www.example.com/&quot;><img src=&quot;URL&quot; alt=&quot;Alternate Text&quot;></a> <a href=&quot;mailto:webmaster@example.com&quot;>Send e-mail</a>
  • 46. A named anchor: <a name=&quot;tips&quot;>Useful Tips Section</a> <a href=&quot;#tips&quot;>Jump to the Useful Tips Section</a> Unordered list <ul> <li>First item</li> <li>Next item</li> </ul> Ordered list <ol> <li>First item</li> <li>Next item</li> </ol>
  • 47. Definition list <dl> <dt>First term</dt> <dd>Definition</dd> <dt>Next term</dt> <dd>Definition</dd> </dl> Tables <table border=&quot;1&quot;> <tr> <th>Tableheader</th> <th>Tableheader</th> </tr> <tr> <td>sometext</td> <td>sometext</td> </tr> </table>
  • 48. Frames <frameset cols=&quot;25%,75%&quot;> <frame src=&quot;page1.htm&quot; /> <frame src=&quot;page2.htm&quot; /> </frameset> Forms <form action=&quot;http://www.example.com/test.asp&quot; method=&quot;post/get&quot;> <input type=&quot;text&quot; name=&quot;email&quot; value=&quot;someone@example.com&quot; size=&quot;40&quot; maxlength=&quot;50&quot; /> <input type=&quot;password&quot; /> <input type=&quot;checkbox&quot; checked=&quot;checked&quot; /> <input type=&quot;radio&quot; checked=&quot;checked&quot; /> <input type=&quot;submit&quot; /> <input type=&quot;reset&quot; /> <input type=&quot;hidden&quot; />
  • 49. <select> <option>Apples</option> <option selected=&quot;selected&quot;>Bananas</option> <option>Cherries</option> </select> <textarea name=&quot;comment&quot; rows=&quot;60&quot; cols=&quot;20&quot;></textarea> </form> Entities &lt; is the same as < &gt; is the same as > &#169; is the same as ©
  • 50. Other Elements <!-- This is a comment --> <blockquote> Text quoted from a source. </blockquote> <address> Written by W3Schools.com<br /> <a href=&quot;mailto:us@example.org&quot;>Email us</a><br /> Address: Box 564, Disneyland<br /> Phone: +12 34 56 78 </address>
  • 51.
  • 52. RSS : The weblog has an RSS feed in place, subscribers to the blog can choose to be automatically notified of this new blog post. RSS (or Really Simple Syndication), is a method for delivering regularly changing Web content. Many blogs and Internet publishers syndicate their content as an RSS Feed to allow people to subscribe to it easily. TAG : The content by users adding &quot;tags&quot; - short, usually one-word descriptions - to facilitate searching, without dependence on pre-made categories. Collections of tags created by many users within a single system may be referred to as &quot;folksonomies&quot;
  • 53. TAXONOMY : Folk Taxonomy or Folxonomy allows users to create tags which means that you can have a virtually infinite set. Systems that use folxonomy include Drupal, Joomla, Flickr, YouTube, Revver, and Google Video. Taxonomies are used when: *  you don't know how many elements might need to be classified * when you need a classification system that can deal with disparate elements. * Folxonomy also creates structure, but it is much more organic than a taxonomy.ÂÂ
  • 54. WYSIWYG : WYSIWYG is an acronym for What You See Is What You Get. The term is used in computing to describe a system in which content displayed during editing appears very similar to the final output, which might be a printed document, web page, slide presentation or even the lighting for a theatrical event ATOM : Atom is a simple way to read and write information on the web, allowing you to easily keep track of more sites in less time, and to seamlessly share your words and ideas by publishing to the web.