Linux Basic Day 3

Total Page:16

File Type:pdf, Size:1020Kb

Linux Basic Day 3 Linux Administrator ( Fundamental) Mr.KriangsakNamkot Trainer & Director Jodoi IT&Service Co.,Ltd. [email protected] [email protected] http://www.jodoi.com Linux Administrator ( Fundamental) Day 3 9:00 am -12.00 am -Mount & Unmount -SSH Server -Lab SSH 1:00 pm -4.00 pm -Crontab -Web Server -Webmin 1 Mount & Unmountflash drive [root@jodoi-server2 ~]# # tail -f /var/log/messages Jul 16 05:51:53 jodoi-server kernel: sda: sda1 [root@jodoi-server2 ~]# lsmod| grepusb usb_storage 77857 0 scsi_mod 141717 5 ,scsi_dh,usb_storage,libata,sd_mod [root@jodoi-server2 ~]# lsusb Bus 001 Device 001: ID 0000:0000 Bus 001 Device 002: ID 0930:6545 Toshiba Corp. Kingston DataTraveler2.0 Stick (4GB) / PNY Attache4GB Stick Bus 002 Device 001: ID 0000:0000 Mount & Unmountflash drive [root@jodoi-server ~]# lsusb Bus 001 Device 002: ID 1005:b113 ApacerTechnology, Inc. Handy Steno 2.0/HT203 [root@jodoi-server /]# mkdirflashdir [root@jodoi-server /]# mount /dev/sda1 /flashdir/ [root@jodoi-server /]# cdflashdir/ [root@jodoi-server flashdir]# ls [root@jodoi-server /]# umount/dev/sda1 2 SSH Server SecureShell or SSH is a networkprotocolthat allows data to be exchanged using a securechannelbetween two networked devices. sshd -OpenSSHSSH daemon sshd (OpenSSHDaemon) is the daemon program for ssh. sshd can be configured using command-line options or a configuration file ( by default sshd_config ) ssh -OpenSSHSSH client (remote login program) SSH Server [root@jodoi-server ~]# vi /etc/ssh/sshd_config ~ #Port 22 Port 2222 #Protocol 2,1 Protocol 2 #PermitRootLoginyes PermitRootLoginno #MaxAuthTries6 MaxAuthTries3 #MaxSessions10 MaxSessions5 ~ :wq! 3 SSH Server [root@jodoi-server ~]# /etc/init.d/sshdrestart Stopping sshd: [ OK ] Starting sshd: [ OK ] [root@jodoi-server ~]# service sshdrestart Stopping sshd: [ OK ] Starting sshd: [ OK ] [root@jodoi-server ~]# netstat-tanp|grepssh tcp 0 0:::2222 :::* LISTEN 5432/sshd [root@jodoi-server ~]# ps-ef|grepssh root 5432 1016:48 ? 00:00:00/usr/sbin/sshd SSH Server [root@jodoi-server ~]# ssh127.0.0.1 ssh: connect to host 127.0.0.1 port 22: Connection refused [root@jodoi-server ~]# ssh-p 2222 127.0.0.1 The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established. RSA key fingerprint is 1d:d1:d8:ba:08:d8:0e:a4:c4:6f:42:51:f5:b3:fa:e4. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '127.0.0.1' (RSA) to the list of known hosts. [email protected]'s password: ****** 4 SSH Server [root@jodoi-server ~]# ssh-p 2222 [email protected] [email protected]'s password: **** Last login: Tue Jan 13 16:36:30 2009 from 192.168.1.102 [jodoi@jodoi-server ~]$ [root@jodoi-server ~]# ssh-p 2222 [email protected] The authenticity of host '192.168.1.212 (192.168.1.212)' can't be established. RSA key fingerprint is 1d:d1:d8:ba:08:d8:0e:a4:c4:6f:42:51:f5:b3:fa:e4. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.168.1.212' (RSA) to the list of known hosts. [email protected]'s password: **** Last login: Tue Jan 13 16:55:22 2009 from jodoi-server.com SSH Server 5 SSH Server SSH Server 6 RPM Redhat Package Manager http://www.rpm.org/RPM-HOWTO/ #rpm –ivh filename.rpm ( Install ) #rpm –Uvh filename.rpm ( Upgrade ) [root@doi-server ~]# rpm -qa redhat-logos-1.1.26-1.centos4.4 basesystem-8.0-4 glibc-2.3.4-2.25 ~ [root@doi-server ~]# rpm -qa ntp ntp-4.2.2p1-9.el5.centos.2.1 Used Shell Commands date -print or set the system date and time [root@jodoi-server ~]# date Mon Jan 12 13:44:50 ICT 2009 # date MMDDhhmmYYYY [root@jodoi-server ~]# date 011215302009 Mon Jan 12 15:30:00 ICT 2009 ntpdate -set the date and time via NTP [root@jodoi-server ~]# ntpdate-b time1.nimt.or.th 12 Jan 15:54:42 ntpdate[3199]: step time server 203.185.69.60 offset 262.750732 sec [root@jodoi-server ~]# date Mon Jan 12 15:54:57 ICT 2009 7 Used Shell Commands # yum install ntp Transaction Summary ========================================== ================================== Install 1 Package(s) Update 0 Package(s) Remove 0 Package(s) Total download size: 1.3 M Is this ok [y/N]: y Running Transaction Installing: ntp ######################### [1/1] Installed: ntp.i386 0:4.2.2p1-7.el5 Complete! CRON jobs crontab -maintain crontabfiles for individual users -l option causes the current crontab to be displayed on standard output. -r option causes the current crontabto be removed. -e option is used to edit the current crontabusing the editor specified by the VISUAL or EDITOR environment variables. After you exit from the editor, the modified crontabwill be installed automatically. SEE ALSO crontab(5) , cron(8) 8 CRON jobs [root@jodoi-server /]# man 5 crontab The time and date fields are: field allowed values ----- -------------- minute 0-59 hour 0-23 day of month 1-31 month 1-12 (or names, see below) day of week 0-7 (0 or 7 is Sun, or use names) CRON jobs [root@jodoi-server /]# man 5 crontab Lists are allowed. A list is a set of numbers (or ranges) separated by commas. Examples: ``1,2,5,9'', ``0-4,8-12''. Step values can be used in conjunction with ranges. Following a range with ``/<number>'' specifies skips of the number's value through the range. For example, ``0-23/2'' can be used in the hours field to spec-ifycommand execution every other hour (the alternative in the V7 stan- dardis ``0,2,4,6,8,10,12,14,16,18,20,22''). Steps are also permitted after an asterisk, so if you want to say ``every two hours'', just use ``*/2''. 9 CRON jobs [root@jodoi-server /]# crontab -l no crontab for root [root@jodoi-server ~]# ntpdate-b time1.nimt.or.th 27 Jan 10:26:15 ntpdate[2886]: step time server 203.185.69.60 offset 420.699104 sec [root@jodoi-server ~]# crontab -e 18 16 * * * cp -fr /var/log/* /tmp/log/ :wq! [root@jodoi-server ~]# /etc/init.d/crondrestart Stopping crond: [ OK ] Starting crond: [ OK ] [root@jodoi-server log]# tail -f /var/log/cron Jan 27 10:15:03 jodoi crond[2862]: (CRON) STARTUP (V5.0) Jan 27 10:16:01 jodoi crond[2872]: (root) CMD (cp /var/log/* /tmp/log/) CRON jobs [root@jodoi-server ~]# vi test.sh mkdirlog cp -fr/var/log/* log [root@jodoi-server ~]# chmod777 test.sh [root@jodoi-server ~]# ./test.sh # crontab-e 28 10 * * * mkdir/tmp/test5 48 10 * * * ./test.sh 7 11 * * * /etc/init.d/httpdstop 8 11 * * * /etc/init.d/httpdstart 10 Web Server ( Apache ) httpd -Apache Hypertext Transfer Protocol Server httpdis the Apache HyperTextTransfer Protocol (HTTP) server program. It is designed to be run as a standalone daemon process. [root@jodoi-server /]# rpm -q httpd httpd-2.2.3-31.el5.centos [root@jodoi-server /]# vi /etc/httpd/conf/httpd.conf This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs/2.2/> for detailedinformation. Web Server ( Apache ) [root@jodoi-server /]# vi /etc/httpd/conf/httpd.conf ~ #Listen 12.34.56.78:80 Listen 80 # DocumentRoot"/var/www/html“ #<VirtualHost*:80> # ServerAdmin [email protected] # DocumentRoot/www/docs/dummy-host.example.com # ServerNamedummy-host.example.com # ErrorLoglogs/dummy-host.example.com-error_log # CustomLoglogs/dummy-host.example.com-access_log common #</VirtualHost> 11 Web Server ( Apache ) [root@jodoi-server /]# /etc/init.d/httpdrestart Stopping httpd: [FAILED] Starting httpd: [ OK ] [root@jodoi-server /]# service httpdrestart Stopping httpd: [ OK ] Starting httpd: [ OK ] [root@jodoi-server /]# ps -ef |grep http root 27794 1 0 10:08 ? 00:00:00 /usr/sbin/httpd apache 27796 27794 0 10:09 ? 00:00:00 /usr/sbin/httpd apache 27797 27794 0 10:09 ? 00:00:00 /usr/sbin/httpd apache 27798 27794 0 10:09 ? 00:00:00 /usr/sbin/httpd apache 27799 27794 0 10:09 ? 00:00:00 /usr/sbin/httpd apache 27800 27794 0 10:09 ? 00:00:00 /usr/sbin/httpd Web Server ( Apache ) [root@jodoi-server /]# netstat-tanp|grep80 tcp 1 0 192.168.1.212:54311 195.220.108.108:80 CLOSE_WAIT 2340/python tcp 1 0 192.168.1.212:53106 209.132.176.120:80 CLOSE_WAIT 2340/python tcp 1 0 192.168.1.212:40335 193.1.193.67:80 CLOSE_WAIT 2340/python tcp 0 0 :::80 :::* LISTEN 27794/httpd [root@jodoi-server /]# netstat-tanp|grephttp tcp 0 0 :::80 :::* LISTEN 27794/httpd tcp 0 0 :::443 :::* LISTEN 27794/httpd 12 Web Server ( Apache ) Webmin Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webminremoves the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely. See the standardmodulespage for a list of all the functions built into Webmin, or check out the screenshots. http://www.webmin.com/ 13 Webmin [root@jodoi-server ~]# wget http://prdownloads.sourceforge.net/webadmin/webmin- 1.500.tar.gz [root@jodoi-server ~]# tar -zxvfwebmin-1.500.tar.gz [root@jodoi-server ~]# cdwebmin-1.500 [root@jodoi-server webmin-1.500]# ./setup.sh Web server port (default 10000): Login name (default admin): Login password: Webmin [root@jodoi-server webmin-1.500]# netstat-tanp|grep10000 tcp 0 00.0.0.0:10000 0.0.0.0:* LISTEN 6889/perl https://192.168.1.212:10000/ 14 Webmin https://192.168.1.212:10000/ Webmin Change password user admin [root@jodoi-server webmin-1.520]# ./changepass.pl /etc/webminadmin 1234 Updated password of Webminuser admin 15 X windows Basic X-Windows wish to use a graphical interface so tried to run startx [root@jodoi-server ~]# startx or You must change mode command to GuiWindows by [root@jodoi-server ~]# vi /etc/inittab # ~ # 0 -halt (Do NOT set initdefaultto this) # 1 -Single user mode # 2 -Multiuser, without NFS (The same as 3, if you do not have networking) # 3 -Full multiusermode # 4 -unused # 5 -X11 # 6 -reboot (Do NOT set initdefaultto this) id:5:initdefault: # ~ [root@jodoi-server ~]# shutdown –r now X windows 16 X windows 17.
Recommended publications
  • Ispconfig 3 Manual]
    [ISPConfig 3 Manual] ISPConfig 3 Manual Version 1.0 for ISPConfig 3.0.3 Author: Falko Timme <[email protected]> Last edited 09/30/2010 1 The ISPConfig 3 manual is protected by copyright. No part of the manual may be reproduced, adapted, translated, or made available to a third party in any form by any process (electronic or otherwise) without the written specific consent of projektfarm GmbH. You may keep backup copies of the manual in digital or printed form for your personal use. All rights reserved. This copy was issued to: Thomas CARTER - [email protected] - Date: 2010-11-20 [ISPConfig 3 Manual] ISPConfig 3 is an open source hosting control panel for Linux and is capable of managing multiple servers from one control panel. ISPConfig 3 is licensed under BSD license. Managed Services and Features • Manage one or more servers from one control panel (multiserver management) • Different permission levels (administrators, resellers and clients) + email user level provided by a roundcube plugin for ISPConfig • Httpd (virtual hosts, domain- and IP-based) • FTP, SFTP, SCP • WebDAV • DNS (A, AAAA, ALIAS, CNAME, HINFO, MX, NS, PTR, RP, SRV, TXT records) • POP3, IMAP • Email autoresponder • Server-based mail filtering • Advanced email spamfilter and antivirus filter • MySQL client-databases • Webalizer and/or AWStats statistics • Harddisk quota • Mail quota • Traffic limits and statistics • IP addresses 2 The ISPConfig 3 manual is protected by copyright. No part of the manual may be reproduced, adapted, translated, or made available to a third party in any form by any process (electronic or otherwise) without the written specific consent of projektfarm GmbH.
    [Show full text]
  • G7: RASC Halifax Centre Website Standard Operating Procedures (SOP) (Adopted November 2, 2019)
    Royal Astronomical Society of Canada (RASC), Halifax Centre Dedicated to the Advancement of Astronomy and Allied Sciences G7: RASC Halifax Centre Website Standard Operating Procedures (SOP) (Adopted November 2, 2019) Background: In October 2005, the standard operating procedures (SOP) for the RASC Halifax Centre website were developed and defined who was responsible for the various aspects of the Centre’s website and for making changes to it. During 2019, the Centre’s website was upgraded to use a new content management system. The SOP was consequently changed to reflect the changes made. Rationale: The SOP defines the assignment of responsibility for making changes to the site on an ongoing basis. Policies Relating to the RASC Halifax Centre Website Standard Operating Procedures: 1. The RASC Halifax Centre maintains a web page at http://halifax.rasc.ca on a server maintained by the Department of Astronomy & Physics, Saint Mary's University (SMUDA&P). Upload privileges are held by selected SMUDA&P staff, the RASC Halifax Centre webmaster, the RASC Halifax Vice-President, and the organizers of the annual Nova East Star Party. 2. The website is created using the Joomla content management system. All page editing is done using a web-based interface. The site for the centre (halifax.rasc.ca) and Nova East (novaeast.rasc.ca) are separate Joomla sites. These sites and associated email addresses and mailing lists are contained in a "Virtualmin" on the serverpluto.smu.ca. The login is at: https://halifax.rasc.ca:10000/ (password can be made available by SMUDA&P staff). 3. The Webmaster reports to the RASC Halifax Centre Board of Directors through the President and accepts new material for the web page from the Board.
    [Show full text]
  • Webmaster - Web Designer
    Webmaster - Web Designer (INTERNATIONAL LOGISTICS – GLOBAL SUPPLY CHAIN) Baltimore, MD 21230 (Locust Point, McHenry Row) O Web Designer, Webmaster, wherefore art thou creative website guru? In a world facing new challenges, a nimble but steady ship is more important than ever. Is there a seat on our boat for you? Want a career, not a job? Find out. In a modern era where expertise is often devalued, Shapiro stands strong at 105-years old. We’re so compliant that US Customs learns from us! Our headquarters was named as a “Best Place to Work.” Shapiro is not your grandpa’s shipping company. We have a track record of transparency, developing employees, and investing in our environment like office space and now…work-from-home technology. At Shapiro, our Web Designer/Webmaster is an integral member of Shapiro's marketing team. Responsibilities include bringing Shapiro's digital website strategy to life across all digital touchpoints. You will also own the shapiro.com web platform to expand our brand presence, maintain our website content, and ensure security. JOB DESCRIPTION Responsibilities include: • Design website pages that are user-friendly, attractive, and engaging while remaining loyal to the company brand and promoting the company image and values. Excellent internal customer service in an engaging environment. • Add new site elements and update content on existing pages to keep the website fresh and exciting. • Ensure all content is optimized for search engines (SEO) to drive traffic to pages. • Track and analyze all website visitors and create regular analytics reports to show increases and decreases in traffic/conversions.
    [Show full text]
  • A Survey on Search Engine Optimization (SEO)
    Int'l Journal of Computing, Communications & Instrumentation Engg. (IJCCIE) Vol. 4, Issue 2 (2017) ISSN 2349-1469 EISSN 2349-1477 A Survey on Search Engine Optimization (SEO) Anis ISMAIL and Firas ABDALLAH Abstract— With the growth of Internet in the recent years, search engine such as Google, Bing and Yahoo are becoming more and more important. The role of the search engines is to index billions of web pages and display only the most relevant results for a given search query. When creating the website, many webmasters forget to take into consideration an essential factor, which is making the world aware of their website. Most of times, main focus is set on making the website as user-friendly as possible, stable, fast and secure. In this paper, we present may techniques that are sometimes useless. The aim of these techniques is to verify if the website does not have visitors or simply not found. Fig. 1.Different SEO Techniques [3] Most of the times, SEO is just simply a method of building Keywords—Internet, Google, Bing, Yahoo, search engines, the structure of the website in a way that it will allow search SEO. engines to understand what the website is all about. The majority of the web visitors are driven to websites by search I. INTRODUCTION engines such as Google, Bing and Yahoo. Despite the fact that Search engine is an application used to help find information social media such as Facebook, Twitter and even Youtube and on the internet. The search engine is usually accessed through a many others can still be the source of visitors to a website, page on a website that allows a user to search the content of search engines remains the primary method of locating and billions of websites on the web by entering a set of keywords into a search textbox [1].
    [Show full text]
  • A Statistical Approach to Disentangle Joint Responsibility for Web Security in Shared Hosting
    Session C2: World Wide Web of Wickedness CCS’17, October 30-November 3, 2017, Dallas, TX, USA Herding Vulnerable Cats: A Statistical Approach to Disentangle Joint Responsibility for Web Security in Shared Hosting Samaneh Tajalizadehkhoob Tom Van Goethem Maciej Korczyński Delft University of Technology imec-DistriNet, KU Leuven Delft University of Technology Arman Noroozian Rainer Böhme Tyler Moore Delft University of Technology Innsbruck University The University of Tulsa Wouter Joosen Michel van Eeten imec-DistriNet, KU Leuven Delft University of Technology ABSTRACT KEYWORDS Hosting providers play a key role in fighting web compromise, Shared hosting; hosting providers; web security; patching, large- but their ability to prevent abuse is constrained by the security scale measurement; factor analysis; empirical evaluation practices of their own customers. Shared hosting, offers a unique perspective since customers operate under restricted privileges and providers retain more control over configurations. We present the 1 INTRODUCTION first empirical analysis of the distribution of web security features Global web infrastructure is compromised at scale in support of and software patching practices in shared hosting providers, the a myriad of cybercrime business models, from phishing to botnet influence of providers on these security practices, and their impact command and control (C&C) to malware distribution. The respon- on web compromise rates. We construct provider-level features on sibility for remediating compromised resources is shared between the global market for shared hosting – containing 1,259 providers – webmasters and multiple infrastructure operators, notably hosting by gathering indicators from 442,684 domains. Exploratory factor providers, domain name registrars and internet service providers analysis of 15 indicators identifies four main latent factors that (ISPs).
    [Show full text]
  • Club Webmaster
    KEY CLUB OFFICER KEY CLUB WEBBe the MASTER WEBBe the MASTER Be the Webmaster Congratulations on being elected club webmaster. The role of webmaster is very important, and the work you do this year will help promote your club’s activities through an online presence. Your main focus will be to create and maintain a club website, share club activities on social media, engage with your members online, and use online resources to recruit members. Every club is unique, so make your website fit your club’s needs. Meet with your advisor and other officers to determine additional responsibilities for your position. Good luck, and have a wonderful year. KEY CLUB OFFICER: Be the Webmaster | 1 Official duties Your Key Club will be as strong as your officer team, and that team is designed to empower each officer to carry out his or her own duties. When your officers work with one another, the team’s success will take precedence over individual success. Below is a list of official duties related to your position, but feel free to add to it based on the needs of your club. Create a club website. IMPORTANT NOTES 1 Each club will decide which duties will be the webmaster’s and which duties will be the editor’s. The two positions should work together to ensure the club’s message and activities are shared with a diverse audience. 2 Refer to your school or organization policies or rules prior to creating a website and social media accounts for your Key Club. Maintain accurate and 3 Be sure to reference the Key Club brand guide which up-to-date information on can be found at keyclub.org/marketing.
    [Show full text]
  • Servidor Donde Se Instaló El Webmin
    Administración de Redes de Computadores 2.4. UTILITARIO DE ADMINISTRACIÓN WEBMIN Para facilitar las labores de administración y operación del sistema, linux provee algunos utilitarios como las herramientas que se acceden por el inicio, para crear usuarios, manejo de disco, servicios, etc. Se pueden usar herramientas de terceros que se acceden via web como el Webmin. Busca el instalador de webmin por internet para el sistema operativo que maneje, cópialo en un directorio eje: /opt/instaladores. En el proceso de instalación, puede preguntar por puerto por el cual atenderá las peticiones. Por default es el puerto 10000. Desde /opt descomprimir el instalador de webmin-1200 [root@fw opt]# tar xvzf instaladores/webmin-1.200.tar.gz Crea la carpeta respectiva y desde allí se corre el setup.sh [root@fw opt]# cd webmin-1.200/ [root@fw webmin-1.200]# ./setup.sh *********************************************************************** * Welcome to the Webmin setup script, version 1.200 * *********************************************************************** Webmin is a web-based interface that allows Unix-like operating systems and common Unix services to be easily administered. Installing Webmin in /opt/webmin-1.200 ... *********************************************************************** Webmin uses separate directories for configuration files and log files. Unless you want to run multiple versions of Webmin at the same time you can just accept the defaults. Config file directory [/etc/webmin]: Log file directory [/var/webmin]: ***********************************************************************
    [Show full text]
  • Webmaster/Digital Content Administrator Job Description
    WEBMASTER/DIGITAL CONTENT ADMINISTRATOR JOB DESCRIPTION Job Title: Webmaster/Digital Content Administrator Wage/Hour Status: Exempt Reports to: Director of Communications & Marketing Pay Grade: 409 (226 Calendar) Dept./School: Administration Date Revised: 6/2018 Primary Purpose: To digitally communicate the image and goals of the district through the use of effective web, video and other digital communication strategies under the leadership of the Director and Coordinator of Communications and Marketing. Design, enhance and maintain the district and campus websites, signage and other digital communication tools. Ensure the technical effectiveness, compliance and functionality for the district and campus websites. Qualifications: Education/Certification: • Associate’s or Bachelor’s degree in communications, computer science or other related field preferred Special Knowledge/Skills: • Ability to create digital content • Graphic design experience • In depth knowledge of HTML or other web-based technologies • Understanding of analytics and search engine optimization • Knowledge of Internet infrastructure and practices • Knowledge of website design practices and familiarity with recent trends in marketing, including social networking strategies • Ability to detect, analyze, and solve technical problems • Knowledge of strategic communications, public relations and marketing strategies • Strong organizational, communication, and interpersonal skills Experience: • Two or more years of professional website/digital communications management experience preferred. Major Responsibilities and Duties: Web/Digital Communications Administration: 1. Define, develop and deliver projects to enhance the website and digital communication tools in ways that align with the district’s strategic goals. 2. Maintain a fresh cohesive website design, monitor web traffic and increase online marketing presence. 3. Creates digital content including, but not limited to, writing, graphics and video.
    [Show full text]
  • Website Content Management
    Administrative Procedure 7241 WEBSITE CONTENT MANAGEMENT Responsible: Office of Information Technology PURPOSE This administrative procedure establishes guidelines for management of content posted to websites maintained by the Washoe County School District (“District”). PROCEDURE 1. Content Managers a. Each school and department in the District should have at least one person who is trained in using the District’s content management system, the system used to manage the content of the Web site. Content managers shall be responsible for maintaining and editing the content for their school or department's section of the web site. b. Any individual requesting access to create, maintain, or edit web content must: i. Be approved for access by the site administrator ii. Be a District employee with an active District email address (@washoeschools.net) iii. Complete the District’s mandatory ADA and Compliance Training specific to website content managers. 2. Content a. Content includes text, videos, audio, pictures and any other information being placed on the website. Content shall: i. Be approved by the site administrator; ii. Comply with all District policies, regulations, and procedures; and iii. Be compliant with state and federal laws and regulations, to include the Americans with Disabilities Act. 3. Site Guidelines for Web Content Management a. As new or existing content is modified on District maintained websites, the following procedures shall be followed. Detailed information on the following topics related to web content shall be provided by the District’s webmaster through training as well as detailed instruction on the Web Content Management Training Site on the District’s website.
    [Show full text]
  • Website Development & Hosting
    website.qxd 4/9/2003 11:52 AM Page i Website Development & Hosting Shem Bodo website.qxd 4/9/2003 11:52 AM Page ii The choice and presentation of the facts contained in this report and the opinions expressed therein are the responsibility of the authors and do not necessary reflect the views of UNESCO. Any part of Website Development & Hosting may be freely reproduced, provided it is for non-commercial purposes and with the appropriate acknowledgement. $or further information, please contact: NESIS Regional Centre UNESCO Harare P O Box HG 435 Highlands Harare, Zimbabwe Tel: (263) 4 776114-5 $ax: (263) 4 776055 E-mail: [email protected] Production Manager: Charlotta Mockrish, Harare, Zimbabwe Layout: $ontline Electronic Publishing, Harare, Zimbabwe Printed by: Préci-ex, Les Pailles, Mauritius © UNESCO 2002 ISBN: 92-9124-027-8 website.qxd 4/9/2003 11:52 AM Page iii PREACE Over the last 10 years, NESIS has been involved in capacity-building programmes in Africa through training workshops, developing technical manuals and sharing experiences. At the annual NESIS meeting, held in March 2001, presentation emerged as a priority area among countries engaged in capacity building. In response to their concerns, a Technical Working Group (TWG) was appointed to develop a proposal for increased training opportunities on the presentation of statistical data. A technical team at the NESIS Regional Centre in Harare is now developing training material on how to organise, analyse and present statistical data, and on how to communicate this information among countries. The following year, a workshop on Statistics, Publications, and Information Systems, held in Nairobi in $ebruary, focused on producing information products and services for consumers and users of statistics.
    [Show full text]
  • Tutorial: Wikis in the Workplace" for Wiki Symposium, Montreal, Canada, 22 Oct 2007
    This is the presentation material for the 3 hour session on "Tutorial: Wikis in the Workplace" for Wiki Symposium, Montreal, Canada, 22 Oct 2007. Slide 1: Tutorial: Wikis in the Workplace "Wikis have changed the way we run meetings, plan releases, document our product and generally communicate with each other" - Eric Baldeschwieler, Director of Software Development of Yahoo! • Wiki, a writable web: Communities can share content and organize it in a way most meaningful and useful to them • If extended with the right set of functionality, a wiki can be applied to the workplace to schedule, manage, document, and support daily activities • A structured wiki combines the benefits of a wiki and a database • This tutorial explains publishing wikis and structured wiki, covers its deployment, and shows some sample applications using TWiki, an open source enterprise wiki platform Presentation for Wiki Symposium, Montreal, Canada, 22 Oct 2007 -- Peter Thoeny - [email protected] - TWIKI.NET Slide 2: About Peter • Peter Thoeny - [email protected] • Founder of TWiki, the leading wiki for corporate collaboration, managing the open-sourced project for the last 9 years • Co-founder of TWIKI.NET , a company offering services and support for TWiki • Co-author of Wikis for Dummies book • Invented the concept of Structured Wikis - where free form wiki content can be structured with tailored wiki applications • Recognized thought-leader in Wikis and social software, featured in numerous articles and technology conferences including
    [Show full text]
  • Online Marketing and Webmaster
    JOB DESCRIPTION Digital Marketing Associate / Webmaster Fulltime, Temp to Permanent Position Primary Purpose/Job Summary: Under general direction, manages all aspects of the St. Ignatius College Preparatory website and digital marketing initiatives including design, content management, project planning and technology evaluations. Reports to: Director of Communications Essential Functions/Role and Responsibilities: • Maintain and develop the SI website. • Establish web design and content standards. Implement and maintain a style guide for all website content. • Manage the day-to-day operation of the school’s websites, ensuring the functionality, navigation, and overall performance meet the needs of the school. Incorporate input and requests from school community. • Regulate and manage the access rights of the different users. • Enable and help train students, faculty, administrators, departments, coaches, clubs and parent groups to create and maintain an online presence using the Finalsite platform. • Evaluate, recommend and implement new features, software, code and technologies to enhance the website. • Develop content for the website including writing stories, staging photos and creating and editing videos. • Perform testing and quality assurance of web site and web applications. • Maintain relationships with 3rd party vendors of website technologies • Manage the credit card transactions processes on the website and work with business office to properly account for online transactions. • Work with Director of Communications to implement
    [Show full text]