Unix fdisk -l Automation


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unix fdisk -l Automation
# 1  
Old 02-23-2015
Power Unix fdisk -l Automation

Hello Folks - Need help really ASAP.

Iam trying to run this Shell command to get all the lists of partitions and disks from across all the servers.

Code:
#!/bin/ksh
_servers=""
_out="/tmp/output.$$"
_ssh=/usr/bin/ssh

>$_out
for s in $_servers
do
        $_ssh $s fdisk -l >> $_out
done

Moderator's Comments:
Mod Comment Please do not hijack an existing thread but start a new thread
and post you new thread in the proper forum

Moved post to new thread

Last edited by Scrutinizer; 02-23-2015 at 12:48 PM.. Reason: code tags
# 2  
Old 02-23-2015
And in what way does it not work?
# 3  
Old 02-23-2015
Hello -

So when i try to run this shell, this is the output that iam getting.

ksh: line 1: fdisk: not found
# 4  
Old 02-23-2015
Where is fdisk on these servers?
# 5  
Old 02-23-2015
/sbin

also i was trying to do this in all the 262 servers that we have....so that i can get the list of all the disks and partitions and send these details in the output....i dont want to try and manually login to each server and type the command.
# 6  
Old 02-23-2015
So, try /sbin/fdisk.
# 7  
Old 02-23-2015
Yes i know it worked before, but i want to know how i can incorporate that in the Script? so that it doesn't error out when i run the script.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Automation using bots in Linux/UNIX ?

Hi folks, has any one attempted using bots for performing tasks in unix?please share if you faced any challenges thanks (1 Reply)
Discussion started by: tommy812
1 Replies

2. Post Here to Contact Site Administrators and Moderators

UNIX automation

I am using netteza server and i have a list of table names. I need to fetch all the data from these tables and need to create seperate zip files and store in a folder in the server. How can we automate this process. (1 Reply)
Discussion started by: nikhilthms97
1 Replies

3. Homework & Coursework Questions

Mail Automation in UNIX

Hi Sir, I need unix code which will read data present in .xls file and should send an automated mails .when i place the .XLS file in a specific folder and run ***.sh from unix box Attached Excel file contains Subject , To , CC , Body (Paragraph 1) , Body (Paragraph 2) , Signature When i... (2 Replies)
Discussion started by: chaitanyaS
2 Replies

4. BSD

OpenBSD fdisk - Linux fdisk compatibility ?

Hello, MBR partition table made by linux fdisk looks certainly not correct when printed by openbsd fdisk: Partition table created on linux (centos 6.3): # fdisk -l /dev/sdc Disk /dev/sdc: 10.7 GB, 10737418240 bytes 255 heads, 63 sectors/track, 1305 cylinders Units = cylinders of 16065 *... (2 Replies)
Discussion started by: vilius
2 Replies

5. Shell Programming and Scripting

creating an automation process in unix .

hi i need shell script in ksh for the automation process in informtica. The automation process is like this . i have a folder in unix . when this folder gets updated (like if a file or files is/are added to the folder) an event in informatica is triggered and after the process is done in... (2 Replies)
Discussion started by: kumar8887
2 Replies

6. Shell Programming and Scripting

UNIX automation

Hello People, I have an outstanding issue with me I have 5 files at location /usr/abc called 1.DE 1.TXT 2.DE 2.TXT 3.DE 3.TXT 4.DE 4.TXT 5.Fe.ok My work involves few manual process like transfer 1.DE 1.TXT and 5.Fe.ok to /usr/dob location and run one script(for example -... (42 Replies)
Discussion started by: j_panky
42 Replies

7. Shell Programming and Scripting

Simple Unix Automation

Hi, i'm a newbie with unix and shell scripting. I'm just trying to do a script to simply automate a unix task. This are the steps on what i want to just run on a simple shell script 1. go to a specific path (cd /folder1/folder2/) 2. edit and input a number on a file (file_id) then save exit... (6 Replies)
Discussion started by: soultransit
6 Replies

8. UNIX for Advanced & Expert Users

automation of Informatica jobs using Unix

1.How will you do automation of Informatica jobs using Unix ? 2. How u run workflow from Unix? :) (2 Replies)
Discussion started by: kamesh83
2 Replies

9. UNIX for Dummies Questions & Answers

I need fdisk that works with dos and unix

I need an fdisk that will fdisk both parts of my drive. One with dos and the other with linux. Have have messed up my drive and can't fdisk dos or linux. Can you help? thank you (1 Reply)
Discussion started by: gparsons70
1 Replies
Login or Register to Ask a Question