Unix
Top sales list unix
Pune (Maharashtra)
Unix COURSE CONTENT Traning at learning hub Magarpatta city /FC Road Pune (+91-93257-93756) www.learninghub.co.in Unix 1: Basic File System 2: Files and directories 3: Basic Commands 4: File Permissions 5: User management 6: Group management 7: Editor VI 8: Advanced Commands Please Contact- Learning Hub, S-12,Destination Centre, 2nd Floor, Above HDFC Bank, Next to Noble Polyclinic, MAGARPATTA CITY, PUNE – 411013, PH: +91- 93257-93756. Skype id : learning.hub01 Email: learninghub01@gmail.com www.learninghub.co.in
₹ 25
See product
India
Overview: Unix is a multitasking, multi-user computer operating system that exists in many variants. The original Unix was developed at AT&T's Bell Labs research center by Ken Thompson, Dennis Ritchie, and others. From the power user's or programmer's perspective, Unix systems are characterized by a modular design that is sometimes called the "Unix philosophy," meaning the OS provides a set of simple tools that each perform a limited, well-defined function, with a unified filesystem as the main means of communication and a shell scripting and command language to combine the tools to perform complex workflows. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
Chennai (Tamil Nadu)
Peridotsystems offered Unix shell programming courses training .We provide 100% job oriented training programs with assurance and every student are trained to achive their dreams.Our trainers are expects in industry for companies. We have experience trainers and well-qualified with real times basics. WHY CHOOSE PERIDOTSYSTEMS? Syllabus is prepared by professionals We trained student for interviews Flexible timing Mock interviews Lab facility COURSE CONTENT Intoduction to UNIX Basics command in UNIX Listing and processing File creation and Displaying File Handling Cut and Paste ZIP And TAR Shell Programming Conditional And Lopping statement Advance shell Scripting Wesite: www.peridotsystems.in E-mail : papitha.v@peridotsystems.in Contact us : +91-8754597596
See product
India
Overview: UNIX is an operating system which was first developed in the 1960s, and has been under constant development ever since. By operating system, we mean the suite of programs which make the computer work. It is a stable, multi-user, multi-tasking system for servers, desktops and laptops.UNIX systems also have a graphical user interface (GUI) similar to Microsoft Windows which provides an easy to use environment. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
India
Overview: Implementing Linux on custom hardware will, in most cases, require you to write device drivers. This course demonstrates how to write code that runs within the Linux kernel to handle hardware events and present a standard interface to applications.This course presents a detailed view of Linux device drivers with an emphasis on topics specific to embedded environments: cross compilation; remote debugging and real-time. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
Hyderabad (Andhra Pradesh)
UNIX Interview Questions and Answers UNIX or Linux operating system has become default Server operating system and for whichever programming job you give interview you find some UNIX command interview questions there. These UNIX command interview questions are mostly asked during Java development and Support role interviews on various investment banks mostly because most of electronic trading systems or stock trading system works on Unix servers. As we know that high volume low latency systems which wants to take advantage of little bit of volatility in market for Equity , Futures and options or Foreign exchange trading need a stable server side operating system and Redhat Linux is doing great job there. with the advent of Algorithmic trading this speed factor becomes more important so getting someone who has good knowledge of operating system and commands on which these trading system runs is definitely required. but these UNIX command interview questions are equally applicable for any job interview which requires some work on Unix Operating System. With the growing use of Linux in form of RedHat, Solaris and IBM AIX its must to keep you familiar with essential Linux commands available on various platforms. Unix and Linux Command Interview Questions and AnswersLong back I had once asked one of my friend why are you preparing Unix Command interview questions if you going for a Java Interview and he told me that this job doesn't only require knowledge of Java but also knowledge of Unix, Linux, SQL and other scripting language , which is quite true. After that I thought to collect various UNIX command interview questions asked to Java developers or trading system support interviews and this is the result of that compilation. This list of UNIX command interview questions are by means complete and would be great if you guys contribute some genuine and good Unix Command Interview questions and answers asked during interviews. I have divided the questions on three categories for sake of managing and keeping this list of Unix Interview questions up to date. Read more: http://javarevisited.blogspot.com/2011/05/unix-command-interview-questions.html#ixzz3W1UbYiXn
See product
Hyderabad (Andhra Pradesh)
3. How will you find which operating system your system is running on in UNIX? By using command "uname -a" in UNIX 4. How will you run a process in background? How will you bring that into foreground and how will you kill that process? For running a process in background use "&" in command line. For bringing it back in foreground use command "fg jobid" and for getting job id you use command jobs, for killing that process find PID and use kill -9 PID command. This is indeed a good Unix Command interview questions because many of programmer not familiar with background process in UNIX. 5. How do you know if a remote host is alive or not? You can check these by using either ping or telnet command in UNIX. This question is most asked in various Unix command Interview because its most basic networking test anybody wants to do it. 6. How do you see command line history in UNIX? Very useful indeed, use history command along with grep command in UNIX to find any relevant command you have already executed. Purpose of this Unix Command Interview Questions is probably to check how familiar candidate is from available tools in UNIX operation system. 7. How do you copy file from one host to other? Many options but you can say by using "scp" command. You can also use rsync command to answer this UNIX interview question or even sftp would be ok. 8. How do you find which process is taking how much CPU? By using "top" command in UNIX, there could be multiple follow-up UNIX command interview questions based upon response of this because “TOP” command has various interactive options to sort result based upon various parameter. 9. How do you check how much space left in current drive ? By using "df" command in UNIX. For example "df -h ." will list how full your current drive is. This is part of anyone day to day activity so I think this Unix Interview question will be to check anyone who claims to working in UNIX but not really working on it. Read more: http://javarevisited.blogspot.com/2011/05/unix-command-interview-questions.html#ixzz3W1H6kWrg
See product
Hyderabad (Andhra Pradesh)
10 Linux and UNIX Interview Questions and Answers asked in Wipro TCS Capegemini UNIX and Linux Interview Questions and Answers Questions from various UNIX operating systems e.g. Solaris, Linux, IBM AIX or any other UNIX operating system is asked on different support and programming interviews. I have always seen few interview questions from Linux and UNIX along with SQL in almost every Java programming interviews. You just can not afford not to prepare questions from UNIX and Linux until your Job absolutely doesn't require any work in UNIX operating system. I have collected many UNIX command interview questions and already shared them but I found that except system admin jobs, many programming job interviews only focus on general UNIX commands e.g. chmod, find or grep and fundamentals like finding files and directories, managing file space, networking commands, checking process status and managing file permissions. In this article we will see such kind of frequently asked interview questions and answers from UNIX and Linux operating System. Questions are very fundamental in nature and not limited to Linux only and equally applicable to other UNIX operating systems e.g. Solaris, IBM AIX etc. Many of these UNIX questions are asked during various interviews on companies like TCS, Infosys, Citibank , Wipro, Capegemini and Tech Mahindra. But as I said they are very fundamental and can be asked in any company. UNIX and Linux Interview questions answers
See product
Hyderabad (Andhra Pradesh)
6. How do you see command line history in UNIX? Very useful indeed, use history command along with grep command in UNIX to find any relevant command you have already executed. Purpose of this Unix Command Interview Questions is probably to check how familiar candidate is from available tools in UNIX operation system. 7. How do you copy file from one host to other? Many options but you can say by using "scp" command. You can also use rsync command to answer this UNIX interview question or even sftp would be ok. 8. How do you find which process is taking how much CPU? By using "top" command in UNIX, there could be multiple follow-up UNIX command interview questions based upon response of this because “TOP” command has various interactive options to sort result based upon various parameter. Read more: http://javarevisited.blogspot.com/2011/05/unix-command-interview-questions.html#ixzz3W1KOcqlC
See product
Hyderabad (Andhra Pradesh)
osb demo on 27/11/2014 8:00 am Linux and UNIX power most of the most powerful supercomputers in the world today (top500.org). This introductory course in Linus/UNIX system administration emphasizes administration of systems rather than their use from an end-user's point of view. Topics covered include system installation and configuration, user and group administration, service management, software installation, package management, and security. This is a "hands-on" course using the popular Ubuntu (ubuntu.com) Linux distribution. SADGURU TECHNOLOGIES--8179736190--040-40154733
See product
Mumbai (Maharashtra)
(unixf173cf) Take the Franchisee of UNIX Info Service at free of Cost*.Earn Rs.25000+ Per Month. An office space with good location Good decoration. Computer with internet connection. Good knowledge on Computer Internet. Good communications skill power in Hindi, English Regional Language. Good convince power with customers. For more details of Earning Income level:-http://www.unixinfoservice.com/ or mail us at-info@unixinfoservice.com or Call-09228007455/(079)65444655
See product
Hyderabad (Andhra Pradesh)
sadguru technologies 8179736190 040~40154733 Description for UNIX/LINUX ADMINISTRATION training in usa uk We are providing Oracle SOA11g/BPEL, AIA3.0, OSB, Web Logic and SOA Admin, JAVA, Call center Training, SCM Classroom and Online,BO,Callcenter Training under Yashwanth, M.Tech, and Technical Manager in CMMI Level 5 Company with 9 years of middleware experience, successfully placed above 500 members in 1 year. Special Feature We are providing 24/7 Online Lab facility, Student can connect from home to do the LAB practical. Offered Courses 1. Oracle SOA Suite11g/BPEL Normal Track, Fast Track and Online training 2. Oracle AIA 3.0, ADF and OSB training 3. SOA and Web Logic Administration training
See product
Hyderabad (Andhra Pradesh)
sadguru technologies 8179736190 040-40154733 Description for "UNIX/LINUX ADMINISTRATION training in usa uk" We are providing Oracle SOA11g/BPEL, AIA3.0, OSB, Web Logic & SOA Admin, JAVA, Call center Training, SCM (Classroom & Online),BO,Callcenter Training under Yashwanth, M.Tech, and Technical Manager in CMMI Level 5 Company with 9 years of middleware experience, successfully placed above 500 members in 1 year. Special Feature: We are providing 24/7 Online Lab facility, Student can connect from home to do the LAB practical. Offered Courses: 1. Oracle SOA Suite11g/BPEL (Normal Track, Fast Track & Online) training 2. Oracle AIA 3.0, ADF and OSB training 3. SOA & Web Logic Administration training 4. JAVA (Core, Adv & Frameworks) 5. Call center Training 6. SCM (Supply Chain Management)
See product
Hyderabad (Andhra Pradesh)
sadguru technologies 8179736190 040-40154733 Description for "UNIX/LINUX ADMINISTRATION training in usa uk" We are providing Oracle SOA11g/BPEL, AIA3.0, OSB, Web Logic & SOA Admin, JAVA, Call center Training, SCM (Classroom & Online),BO,Callcenter Training under Yashwanth, M.Tech, and Technical Manager in CMMI Level 5 Company with 9 years of middleware experience, successfully placed above 500 members in 1 year. Special Feature: We are providing 24/7 Online Lab facility, Student can connect from home to do the LAB practical. Offered Courses: 1. Oracle SOA Suite11g/BPEL (Normal Track, Fast Track & Online) training 2. Oracle AIA 3.0, ADF and OSB training 3. SOA & Web Logic Administration training 4. JAVA (Core, Adv & Frameworks) 5. Call center Training 6. SCM (Supply Chain
See product
Hyderabad (Andhra Pradesh)
sadguru technologies 8179736190 040-40154733 Description for "UNIX/LINUX ADMINISTRATION training in usa uk" We are providing Oracle SOA11g/BPEL, AIA3.0, OSB, Web Logic & SOA Admin, JAVA, Call center Training, SCM (Classroom & Online),BO,Callcenter Training under Yashwanth, M.Tech, and Technical Manager in CMMI Level 5 Company with 9 years of middleware experience, successfully placed above 500 members in 2. Oracle AIA 3.0, ADF and OSB training 3. SOA & Web Logic Administration training 4. JAVA (Core, Adv & Frameworks) 5. Call center Training 6. SCM (Supply Chain Management)
See product
Hyderabad (Andhra Pradesh)
his course covers the basics as well as the advanced topics of Linux in detail. At the end of the course you will have the skills required to administer a Linux System. The course will also cover Internet application and server configuration on live registered domain names with valid public IP addresses. The training will be conducted by Senior System / Network engineers with several years of industry experience. SADGURUTECHNOLOGIES _8179736190-0401-40154733 Linux Course Contents Introduction to Unix, Installation of Linux. User, Group administration, ACL Automation of Jobs, Disk partitions Mounting File Systems
See product
Achalpur (Maharashtra)
Module: SAP Basis SAP BASIS is a complete administration of the SAP system. SAP BASIS consultant mostly works on SAP administration. From The Installation of the software, maintaining the efficient database, optimizing the system, security of the system etc. is the role of the BASIS consultant. There is always a demand for Good BASIS consultant who understands the System in and out from administration perspective. Prerequisite for training Bachelor degree in engineering and computer application (BCA) Postgraduate degree/diploma (MCA, MCS etc.) Working experience in related field (Database, UNIX, etc.) would be an added advantage Training Course Content Introduction Introduction to SAP R/3 SAP R/3 Architecture Central System Distributed Presentation 2-Tier Configuration 3-Tier Configuration System Landscape & Flow Single System Landscape Two System Landscape Three System Landscape Multi System Landscape Installation of SAP Installation Concepts on Windows & UNIX and Quick Sizing Naming Convention, Software Kit, SAP Licensing Installation Procedure - Windows Application Server for UNIX SAP System R/3 Directory Structure, Kernel GUI Administrator Optimization Security Operation Modes Manual Switching of OP Modes Exceptional Mode Monitoring Profile Maintenance & Parameter Setting System Profile Transport Profile Client Profile Authorization Profile User Administration Creating and Maintaining Master Records, Architecture Logon and Password Security, Protecting Special Users Creating and Maintaining Single and Mass Users and User Groups Copying, Deleting, Locking/Unlocking Users Explanation of Terms Object Class, Authorization Object, Authorization, Profile Create/Maintaining Authorization/Profile Manually Create/Maintaining Roles/Generating Profiles by using PFCG Client Administration Client Maintenance Copying Client within R/3 System (Local) Copying client between R/3 Systems (Remote) Export/Import Protecting Client Monitoring and Verifying a Client Copy Deleting Client Tips and Troubleshooting Transport Management System TMS Terminology and Concepts Configuring TMS and Checking Transport Directory Configuring Transport Domain, Domain Controller and Group Configuring Virtual SAP System and Displaying Configuration Including SAP systems in the Transport Domain Creating Consolidation and Delivery Routes Maintaining SAP Systems without Common Transport Directory Configuring External Systems Locking and Unlocking TMS for a SAP System Deleting SAP System from the Transport Domain Deleting TMS Configuration Change and Transport System Releasing and Transporting Change Request and Tasks Customizing, Workbench, Transport Organizer Importing Change Requests Spool Administration Print related Terminology in OS/SAP Level Setting Local, Remote and Front-End Printing Logical and Real Spool Server Managing Spool Requests using Output Controller Connecting Output Devices to Window System SAPLPD, TemSE, Authorization Patch and Kernel Administration Checking the Patch, Spam, Kernel levels Downloading Installing Patches, Kernel Applying at OS Level, SAPNET, Front-End Troubleshooting Various Issues CCMS Introduction to CCMS CCMS Monitors Alert Monitors Analyzing Alerts and Performance Tuning Background Processing Background Dialogs Concept Defining Jobs Analyzing Jobs Maintenance Jobs Distributed R/3 System Creating Regular Instance Creating Logon Groups for Load Balancing OSS and SNote Concepts How to Use for Different Purposes Manually Applying OSS note on SAP Standard Program SAP Router Installation of SAP Router Creating Route Permission Table Setting Route String Entry for SAP Router Using Various Administrative Options Database Management Introduction to Oracle Oracle Architecture Introduction to SAPDBA Creating Tables and Table Space Adjustment Database Backup, Restore and Recovery Performance Tuning OS, H/W Performance Considerations Memory, Management R/3 Buffers, Page Buffers, Extended and Heap Memory, PRIV Mode System Monitoring Daily, Weekly, Monthly Tasks SAP Implementation Strategy Connectivity between R/3 and BW BW Architecture Defining and Assigning Logical Systems Workbench Administration SAP NetWeaver Trainer’s Profile Working consultants, Module Leads and Project Managers with CMM level 5 companies Freelancers Extensive exposure on various projects covering end-to-end implementation, upgrades, rollouts, enhancements, supports etc. Excellent flair of consulting and training Course Duration Flexible training schedule 60+ hours of class room training Weekdays & Weekend batches Course Fee Rs. 30,000 (INR) System Access 24X7 access to SAP software via internet across globe. Additional Features: Fully comprehensive and practical approach in transferring knowledge Provision of configuration steps Provision of study material strictly from interview point of view Comprehensive test towards the end of the course Preparation for interview Reformatting of CV Contact detail +91-9325793756 (info@learninghub.co.in)
₹ 25
See product
India
Overview: HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984. Recent versions support the HP 9000 series of computer systems, based on the PA-RISC processor architecture, and HP Integrity systems, based on Intel's Itanium architecture. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
Jaipur (Rajasthan)
Linux is a free and open source operating system which is similar to UNIX. Linux is developed as open source software means that the source code for an application is freely distributed along with the application. Linux’s functionality, adaptability and robustness, has made it the main alternative for proprietary UNIX and Microsoft operating systems.
There are literally thousands of resources available on the web for those who are seeking linux online training india in order to get their Linux Certification. The most popular of these websites is the grras. com, which outlines over many training centers across the globe.
For more details about online training please visit :- http://www.grras.com/online-linux-training.php
GRRAS Linux Training and Development Center
219, Himmat Nagar, Behind Kiran Sweets,
Gopalpura Turn, Tonk Road, Jaipur(Raj.)
Email: info@grras.com
http://www.grras.com/
See product
Jaipur (Rajasthan)
Linux is a free and open source operating system which is similar to UNIX. Linux is developed as open source software means that the source code for an application is freely distributed along with the application. Linux’s functionality, adaptability and robustness, has made it the main alternative for proprietary UNIX and Microsoft operating systems. There are so many classes which provide Online linux training course, Online training classes for linux and Grras is best among all the classes in India.
The Grras offers live instructor-led online Linux training that has all the benefits of in-person training, minus the time and cost required by travel. Since the material is the same as for our Linux classroom training and you’ve got a live instructor, you’ll be able to actively participate in the class right from your home or office.
For more details please visit:- http://www.grras.com/online-linux-training.php.
GRRAS Linux Training and Development Center
219, Himmat Nagar, Behind Kiran Sweets,
Gopalpura Turn, Tonk Road, Jaipur(Raj.)
Email: info@grras.com
http://www.grras.com/
See product
Jaipur (Rajasthan)
Linux is a free and open source operating system which is similar to UNIX. Linux is developed as open source software means that the source code for an application is freely distributed along with the application. Linux’s functionality, adaptability and robustness, has made it the main alternative for proprietary UNIX and Microsoft operating systems.
There are literally thousands of resources available on the web for those who are seeking linux online training india in order to get their Linux Certification. The most popular of these websites is the grras. com, which outlines over many training centers across the globe.
For more details about online training please visit :- http://www.grras.com/online-linux-training.php
GRRAS Linux Training and Development Center
219, Himmat Nagar, Behind Kiran Sweets,
Gopalpura Turn, Tonk Road, Jaipur(Raj.)
See product
Jaipur (Rajasthan)
Linux is a free and open source operating system which is similar to UNIX. Linux is developed as open source software means that the source code for an application is freely distributed along with the application. Linux’s functionality, adaptability and robustness, has made it the main alternative for proprietary UNIX and Microsoft operating systems. There are so many classes which provide Online linux training course, Online training classes for linux and Grras is best among all the classes in India.
The Grras offers live instructor-led online Linux training that has all the benefits of in-person training, minus the time and cost required by travel. Since the material is the same as for our Linux classroom training and you’ve got a live instructor, you’ll be able to actively participate in the class right from your home or office.
For more details please visit:- http://www.grras.com/online-linux-training.php.
GRRAS Linux Training and Development Center
219, Himmat Nagar, Behind Kiran Sweets,
Gopalpura Turn, Tonk Road, Jaipur(Raj.)
Email: info@grras.com
http://www.grras.com/
See product
Pune (Maharashtra)
Linux Course Content at Learning Hub (+91-9325793756) www.learninghub.co.in 1.Introduction to Unix & Linux • History of Unix & Linux • Basic Concepts of Operating Systems, Kernel, shell and file system structure • Basic Concepts of Linux • Basic Commands of Linux • Advanced Linux Commands 2.Installation of Linux • Interactive Installation • Kickstart Installation • Network based Installation • 3.Startup and Shutdown scripts • Boot Sequence • Kernel Initialization • INIT Process 4.Software Package Administration • Installing and deleting software packages • Querying and updating software packages 5.Dynamic Host Configuration Protocol (DHCP) • Configuring Linux as DHCP server • Configuring various clients for dhcp server (Windows & Linux) • 6.NFS • Configuring NFS server • Mounting NFS exports on NFS clients 7.Network Information Service (NIS) • Basics of NIS • Configuring NIS master server, slave server and client • Creating NIS users • 8.DNS with Bind • Basis of Internet • Basic of DNS and BIND • Configuring DNS primary server, and secondary servers • Configuring DNS for multiple domains and sub domains • Configuring various clients ( Windows & Linux) • 9.Web Server ( Apache) • Basics of web service • Introduction to Apache • Configuring Apache for main site • Configuring Apache for multiple sites using IP-based, port-based and name-based virtual hosting 10.FTP server (vsftp daemon) • Basics of File Transfer protocol • Configuring samba to act as member server for Windows Network • Configuring samba service for file sharing with windows systems 11.RAID (Redundant Array of Inexpensive Disks) • Implementing RAID on Linux • Pre installation / Post Installation • RAID levels (0, 1, and 5) configuration using RAID tools. 12.Disk Partitioning and Mounting File System • Using fdisk, disk druid utilities for disk partitioning • Using mkfs, dd commands to create file systems • Mounting various file systems • Auto mounting of file system • Logical Volume Manager (LVM) 13.Quotas • Enabling Quotas on partitions • Creating Quotas for users • Auditing quotas 14.Introduction to Graphical Environment • Use and customize the GNOME interface • Perform command tasks using the GNOME GUI • Launch applications from command line and GNOME interface • Customize X Window System 15.User and group administration • Creating and deleting users from the system • Modifying users profile • Creating and deleting groups • Important system files related to user administration 16.Advanced file permissions (ACL) • Assigning advanced files permissions i.e. SUID, SGID and Sticky bit • Creating, modifying and deleting ACL's 17.Backup and recovery • Introduction to various types of backup media • Backup and restoring data using dump / restore commands • Backup and restoring using tar and cpio commands • Automation of Jobs • 18.Securing your Linux Server • Implementing local security • Implementing network security • Implementing data security • Basic elements of Fire Wall using IP Tables • Configuring proftpd for anonymous ftp services 19.Mail Server(SMTP,POP3,IMAP) • Basics of Mail servers • Configuring SMTP services • Configuring POP3/IMAP service on Linux • Integrating Antivirus and Antispam. 20.Proxy Server (Squid) • Basics of proxy services • Configuring proxy services • Creating ACL's for controlling access to internet 21.Samba service • Basics of file sharing in Windows 22.Web Based Administration • Installing Webmin on Linux • Administrating the Linux machine remotely • Using Webmin as a Tool for configuring various services on Linux 23.Troubleshooting your system • Recovering the super user password • Recovering the boot loader (GRUB) • Troubleshooting Xserver problems • Troubleshooting network related problems Please Contact Learning Hub, S-12,Destination Centre, 2nd Floor, Above HDFC Bank, Next to Noble Polyclinic, MAGARPATTA CITY, PUNE – 411013, PH: +91- 93257-93756. Skype id : learning.hub01 Email: learninghub01@gmail.com www.learninghub.co.in Linux Course Online Training, Linux Course Class Room Training Linux Course Training in Magarpatta City, Linux Course Jobs and Placement, Linux Course Remote Support, Linux Course Online Help, Linux Course Videos training, Linux Course Training by Learning Hub, Fast track classes in Linux Course, Best Linux Course training institutes in Pune, Best Faculty in Linux Course, Best online Faculty in Linux Course, Professional classroom training in Linux Course, Professional online training in Linux Course, Linux Course Certification, Linux Course training in Dubai, Linux Course Training in Melbourne, Linux Course Training in Dubai, Linux Course Training, Linux Course Workflow Training, Training, Linux Course Online Training, Linux Course certfication and supporta
₹ 25
See product
Pune (Maharashtra)
Linux Administration Syllabus Linux Administration Syllabus Course ContentTraning at learning hub Magarpatta city /FC Road Pune. (+91-93257-93756) www.learninghub.co.in Introduction to Unix & Linux History of Unix & Linux Basic Concepts of Operating Systems, Kernel, shell and file system structure Basic Concepts of Linux Basic Commands of Linux Advanced Linux Commands Installation of Linux Interactive Installation Kickstart Installation Network based Installation Startup and Shutdown scripts Boot Sequence Kernel Initialization INIT Process Software Package Administration Installing and deleting software packages Querying and updating software packages Dynamic Host Configuration Protocol (DHCP) Configuring Linux as DHCP server Configuring various clients for dhcp server (Windows & Linux) NFS Configuring NFS server Mounting NFS exports on NFS clients Network Information Service (NIS) Basics of NIS Configuring NIS master server, slave server and client Creating NIS users DNS with Bind Basis of Internet Basic of DNS and BIND Configuring DNS primary server, and secondary servers Configuring DNS for multiple domains and sub domains Configuring various clients ( Windows & Linux) Web Server ( Apache) Basics of web service Introduction to Apache Configuring Apache for main site Configuring Apache for multiple sites using IP-based, port-based and name-based virtual hosting FTP server ( vsftp daemon) Basics of File Transfer protocol Configuring proftpd for anonymous ftp service Mail Server(SMTP,POP3,IMAP) Basics of Mail servers Configuring SMTP services Configuring POP3/IMAP service on Linux Integrating Antivirus and Antispam. Proxy Server (Squid) Basics of proxy services Configuring proxy services Creating ACL's for controlling access to internet Samba service Basics of file sharing in Windows Configuring samba to act as member server for Windows Network Configuring samba service for file sharing with windows systems RAID (Redundant Array of Inexpensive Disks) Implementing RAID on Linux Pre installation / Post Installation RAID levels ( 0, 1, and 5) configuration using RAID tools. Disk Partitioning and Mounting File System Using fdisk, disk druid utilities for disk partitioning Using mkfs, dd commands to create file systems Mounting various file systems Auto mounting of file system Logical Volume Manager (LVM) Quotas Enabling Quotas on partitions Creating Quotas for users Auditing quotas Introduction to Graphical Environment Use and customize the GNOME interface Perform command tasks using the GNOME GUI Launch applications from command line and GNOME interface Customize X Window System User and group administration Creating and deleting users from the system Modifying users profile Creating and deleting groups Important system files related to user administration Advanced file permissions (ACL) Assigning advanced files permissions i.e. SUID, SGID and Sticky bit Creating, modifying and deleting ACL's Backup and recovery Introduction to various types of backup media Backup and restoring data using dump / restore commands Backup and restoring using tar and cpio commands Automation of Jobs Securing your Linux Server Implementing local security Implementing network security Implementing data security Basic elements of Fire Wall using IP Tables Web Based Administration Installing Webmin on Linux Administrating the Linux machine remotely Using Webmin as a Tool for configuring various services on Linux Troubleshooting your system Recovering the super user password Recovering the boot loader (GRUB) Troubleshooting Xserver problems Troubleshooting network related problems. Please Contact- Learning Hub, S-12,Destination Centre, 2nd Floor, Above HDFC Bank, Next to Noble Polyclinic, MAGARPATTA CITY, PUNE – 411013, PH: +91- 93257-93756. Skype id : learning.hub01 Email: learninghub01@gmail.com www.learninghub.co.in Linux Administration SyllabusOnline Training, Linux Administration SyllabusClass Room Training, Linux Administration SyllabusTraining in Magarpatta City, Linux Administration SyllabusJobs and Placement, Linux Administration SyllabusRemote Support, Linux Administration SyllabusOnline Help, Linux Administration SyllabusVideos training, Linux Administration Syllabustraining by Learning Hub, Fast track classes in, Best Linux Administration Syllabustraining institutes in Pune, Best Faculty inLinux Administration Syllabus, Best online Faculty in Linux Administration Syllabus, Professional classroom training in Linux Administration Syllabus, Professional online training in Linux Administration Syllabus, Linux Administration SyllabusCertification, Linux Administration Syllabustraining in Dubai, Linux Administration SyllabusTraining in Melbourne, Linux Administration SyllabusTraining in Dubai, Linux Administration SyllabusTrainingLinux Administration SyllabusWorkflow TrainingLinux Administration SyllabusTraining, Linux Administration SyllabusOnline Training, Linux Administration Syllabus cacertfication and support
₹ 25
See product
Chennai (Tamil Nadu)
Best Solaris Training Institute In Chennai Adyar…..9790855020 Peridot systems is one of the NO 1. Best institutions Chennai adyar.Our course syllabus includes basic to advanced level and course syllabus is designed to get the placement in MNC companies in Chennai for more details about course content call syed(9790855020). Benefits of Peridot Systems: We provide 100% placement Online Training with flexible timing Certified material and syllabus coverag Real time practical Guidance Two days Free demo classes Unlimited Lab Facilities Experienced and certified Trainers Course Syllabus for Solaris: Unix Solaris Administration teaching course will cover all aspects of SA1, SA2 certification and the basics of Unix in minutia • Introduction • System Concepts • Administration And Configuration Of Cde • File System • User Administration • Boot Process • Run Levels • Volume Management • Backup &Recovery • Package Administration • Networking Tools • Network File System(Nfs) • Naming Information Service(Nis): • Advance Installation • Advance Installation • Domain Naming Service(Dns) We fulfill your Requriemnts…For further details contact us at 9790855020 Contact Person: Syed Land Line No : 044-42115526 Mail To: syed.noor@peridotsystems.in Website: http://www.peridotsystems.in TAGS: | Corporate Training for SOLARIS|SOLARIS Training in Chennai | Best SOLARIS Training in Chennai | Corporate Training for SOLARIS
See product
Chennai (Tamil Nadu)
Best Solaris Training Institute In Chennai Adyar…..9790855020 Peridot Systems is providing best solaris testing training in adyar, provided by MNC faculty. Our institute Providing high quality interactive and cost effective IT Technologies Training . “PERIDOT SYSTEMS BEST ONLINE TRAINING WITH 100% JOB ASSISTANCE” BENEFITS: Real time Training 100% placement assistance. free career guidance from IT industry experts 24 hours lab facility. Build your carrer at in expansive price learn technologies form MNC IT experts Course Syllabus for Solaris: Unix Solaris Administration teaching course will cover all aspects of SA1, SA2 certification and the basics of Unix in minutia INTRODUCTION SYSTEM CONCEPTS ADMINISTRATION AND CONFIGURATION OF CDE FILE SYSTEM USER ADMINISTRATION BOOT PROCESS RUN LEVELS VOLUME MANAGEMENT BACKUP &RECOVERY PACKAGE ADMINISTRATION NETWORKING TOOLS NETWORK FILE SYSTEM(NFS) NAMING INFORMATION SERVICE(NIS): ADVANCE INSTALLATION ADVANCE INSTALLATION DOMAIN NAMING SERVICE(DNS) Syed Mobile No:9790855020 Mail To: : syed.noor@peridotsystems.in Visit Our Website: http://www.peridotsystems.in Land Line No : 044-42115526 TAGS: | Corporate Training for SOLARIS|SOLARIS Training in Chennai | Best SOLARIS Training in Chennai | Corporate Training for SOLARIS
See product
Chennai (Tamil Nadu)
PERIDOT SYSTEM is the NO.1 training institute in Chennai with expert professional trainers. Excellent environment is available for the students to learn shell scripting. Training is provided for both fresher and working professional who wants to make their career in IT industry. Technical support is provided till placement and we offer 70% of practical classes and 30% of theory classes. Definitely we satisfy the student requirement through our best quality of training. COURSE HIGHLIGHTS • Certificate will provide after completion of training • Free demo class for 2 days • LCD projector is available • Free interview preparation • 100% placement • Immediate response • Interactive classes • Limited batch size • Technical support upto 1 year SHELL SCRIPTING UNIX shell designed a computer program which is named as Shell Script and it provide different types of system command where command operation, special environment settings and post processing apply automatically but it allows the new script to act as a normal unix command. SYLLABUS OF SHELL SCRIPTING • Basics of shell script • Writing shell script • Loops • Conditional statement • Functions and manipulations • Command line arguments • SED and AWK • Misc • Processes • Regular expressions • Filters • parameters Mobile No:8056102481 (student advisor) Landline No: 044-42115526 Mail us: papitha.v@peridotsystems.in Tags: best shell scripting training institute in Chennai, best training institute in Chennai, shell scripting training institute
See product
Hyderabad (Andhra Pradesh)
I often get mails from people asking what are the questions generally asked in Weblogic by interviewers. Generally for an Administrator’s positions, in addition to Weblogic questions, there are a lot of Unix questions and a few questions related to process and case handling. These are the important questions that I cover while interviewing. 1. How do you differentiate between a server hang and server crash issue? When a Server crahes, the JAVA process no longer exists. When the Server is hung, it stops responding. We can use the weblogic.ADMIN utilty to ping the server. In case of a hang situation we can take multiple thread dumps and analyze the cause of hang. 2. What can be the various reasons for a server crash? a) Native IO b) SSL Native Libraries c) JVM d) Supported Configuration e) JDBC Driver issue 3. How do you troubleshoot a crash? JVM crash generates a hs_err_pid file. We need to look into the stack trace of the hs_err_pid file . If the thread is from a native io, we need to disable native io. if the stack trace is from the driver, we need to get in touch with the drive team. Quite possibly its a problem with driver. Changing the type of driver can be a workaround. If the thread shows it coming from an optimzed code, we can turn of optimization. If the stack is from native calls of application, its a bug with the application and it has to b modified. 4. Ho do you troubleshoot Server Hang? We can use java weblogic.Admin PING to check if we get a normal response. We need to take multiple thread dumps with kill -3 pid on unix and CTLR Break on Windows. Analyze the thread dump to find the root cause. 5. What can be the reasons of Server hang? Memory leak, databse query taking a long time to return, Deadlock. 6. What is memory leak? Memory leak is when objects are not romved from the heap even when they are not required. 7. What are the various causes for OUT OF MEMORY? a) Insufficient heap size, not able to match the extra load. b) Objects licing too long, like HTTP Sessions. c) Memory leak in application code. d) Full GC not happening due to JVM Bug. 8. How to troubleshoot and overcome such issues? Gather memory data by enabling GC verbose. If its due to Http Session, timing out http session after certain interval might help. Look into the code for jdbc connection handling. Optimizing the heap size according to the load. 9. When does High CPU Usage occur? It occurs when one process or one thread utilizes unexpectedly high proportion of CPU. 10. How to troubleshoot it? In Solaris environment, we need to take pstack and prstack and see what the threads are doing. In Windows we need to use pslist and process explorer. 11. What is Clustering and what is achieved through it? Clustering is the grouping together of servers for the purpose of high availability and scalability. Load balancing and Failover is achieved. 12. How does Cluster Communication Happen? Members of the Cluster communicate over the Cluster Multicast IP and Port by sending periodic heart beat messages. 13. What is the difference between the Sun JVM and BEA JRockit JVM? The most well know JVM is the implementation from Sun. The Sun JVM is called HotSpot. The Sun JVM is shipped in the Java Developer’s Kit (JDK) and Java Runtime Environment (JRE) from Sun. The BEA JRockit JVM from BEA systems is optimized for reliability and performance for server side applications. To achieve this, BEA JRockit JVM uses technologies such as code generation, hot spot detection, code optimization, advanced garbage collection algorithms and tight operating system integration. 14. TUning JVM Parameters. If you have a single processor, single thread machine then you should use the serial collector (default for some configurations, can be enabled explicitly for with -XX:+UseSerialGC). For multiprocessor machines where your workload is basically CPU bound, use the parallel collector. This is enabled by default if you use the -server flag, or you can enable it explicitly with -XX:+UseParallelGC. If you’d rather keep the GC pauses shorter at the expense of using more total CPU time for GC, and you have more than one CPU, you can use the concurrent collector (-XX:+UseConcMarkSweepGC). Note that the concurrent collector tends to require more RAM allocated to the JVM than the serial or parallel collectors for a given workload because some memory fragmentation can occur.
See product
Chennai (Tamil Nadu)
Informatica Training Center in Chennai We Provides Informatica Certification training in Chennai, In today's competitive IT environment, you need to differentiate yourself. You need to prove that you have the knowledge and skills required to meet today's complex data integration challenges. You need to establish your professional credibility with your employer and within the greater IT industry. The pre-essentials for informatica course incorporate information of SQL & basics Unix. Our Informatica Training in Chennai provide Informatica Training, Data Warehouse Training, ETL Testing training based on current industry standards. We are the Best Informatica Training Institute in Chennai Offers Job Oriented hands-on training with in-terms of syllabus and expert teaching. Our Informatica Training in Chennai covering almost all the transformations which is required for companies in Informatica. Informatica is one of the main data integration programming accessible in the IT market today. Peridot Systems is recognized for its Informatica Training in both retail and corporate market. Informatica is a standout amongst the most generally utilized ETL tools for data warehousing & BI . This is the tool that gives DW answer for more than 70% of all DWBI projects today. Our Informatica Training Course in Chennai provides hands-on training experience which helps you Design and direct the ETL process, including data quality & testing easily at the end of the training program. Informatica Course Syllabus Analytic SQL Data Warehousing basics Business Intelligence - BI Data Modelling Informatica PowerCenter 9.5.1 Informatica IDQ Informatica 9.x PowerCenter Admin Informatica Data Quality 9.0.1 Unix Shell Scripting Recommended Audience for Informatica Training Course in Chennai BI Professionals or ETL Developers Experts seek to end up Business Object Professionals or BI Professionals Database Professionals, Mainframe Professionals, Project Managers, SQL Developers Call us at 8056102481 now to know more about our informatica Course visit our website http://www.peridotsystems.in/ with your points of interest.
See product
Chennai (Tamil Nadu)
We Can Provide you the Knowledge in data warehousing BI Solutions Our Informatica Training in Chennai provide Informatica Training, Data Warehouse Training, ETL Testing training based on current industry standards. We are the Best Informatica Training Institute in Chennai Offers Job Oriented hands-on training with in-terms of syllabus and expert teaching. Our Informatica Training in Chennai covering almost all the transformations which is required for companies in Informatica. Informatica is one of the main data integration programming accessible in the IT market today. Peridot Systems is recognized for its Informatica Training in both retail and corporate market. Informatica is a standout amongst the most generally utilized ETL tools for data warehousing & BI . This is the tool that gives DW answer for more than 70% of all DWBI projects today. Our Informatica Training Course in Chennai provides hands-on training experience which helps you Design and direct the ETL process, including data quality & testing easily at the end of the training program. Informatica Training Center in Chennai We also Provides Informatica Certification training in Chennai, In today's competitive IT environment, you need to differentiate yourself. You need to prove that you have the knowledge and skills required to meet today's complex data integration challenges. You need to establish your professional credibility with your employer and within the greater IT industry. The pre-essentials for informatica course incorporate information of SQL & basics Unix. Informatica Course Syllabus Analytic SQL Data Warehousing basics Business Intelligence - BI Data Modelling Informatica PowerCenter 9.5.1 Informatica IDQ Informatica 9.x PowerCenter Admin Informatica Data Quality 9.0.1 Unix Shell Scripting Recommended Audience for Informatica Training Course in Chennai BI Professionals or ETL Developers Experts seek to end up Business Object Professionals or BI Professionals Database Professionals, Mainframe Professionals, Project Managers, SQL Developers Call us at 8056102481 now to know more about our informatica Course visit our website http://www.peridotsystems.in/ with your points of interest.
See product
-
Next →