Similar Posts
Automated FTP in Unix
#!/bin/sh ### Sample Script and Method for FTP files from one ### Machine/Host to another Machine. ### ### If you want to ftp few file from ### Host-A (location /b002/org_files/) ### to Host-B (location /u001/b_loc), ### here is the script and methods. ### ### 1) Login into Host-B ### 2) cd /u001/b_loc ### 3) Then…
Unix Command’s for DBA’s
Unix Command’s for DBA’s Basic File Navigation The “pwd” command displays the current directory: root> pwd /u01/app/oracle/product/9.2.0.1.0 The “ls” command lists all files and directories in the specified directory. If no location is defined it acts on the current directory: root> ls root> ls /u01 root> ls -al The “-a” flag lists hidden “.” files….
The Future of Operating Systems : Trends to Watch
Operating systems are the invisible backbone of our digital lives, powering everything from smartphones to massive data centers. As technology evolves, operating systems are transforming to meet new demands. Here’s a glimpse into the exciting trends shaping their future. 1. Smarter OS with AI Integration Artificial Intelligence is revolutionizing how operating systems function, making them…
Linux change ip address
Q. How do I change ip address in Linux? A. There are different ways to change IP address in Linux (a) Command Line tools (b) Modify configuration files (c) Use GUI tools Task: Display current IP address and setting for network interface called eth0 Use ifconfig command: # ifconfig eth0 Output: eth0 Link encap:Ethernet HWaddr…
Enabling Xmanager in Red Hat 5 EL
For XDMCP connection to Red Hat 5 EL 1. XDM Configuration 1. Change runlevel to 5 Open/etc/inittab and set the initial runlevel to 5 as following: id:5:initdefault: 2. Enable XDMCP For GDM: Open /etc/gdm/custom.conf and set the Enable entry to 1 in the [xdmcp] section as following. [xdmcp] Enable=1 For KDM: Open /usr/share/config/kdm/Xaccess and remove…
How to find Components Versions for 11i
Q: How to find Oracle Applications Web Server Version ? Q: How to find Version of Apache used with oracle apps 11i ? Log to Application tier as Operating System Usually called as APPLMGR ; go to location $IAS_ORACLE_HOME/Apache/Apache/bin and run command ./httpd -version You will see output like Server version: Oracle HTTP Server Powered…