Creating an NFS Installation Server

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Creating an NFS Installation Server
# 1  
Old 09-08-2010
Creating an NFS Installation Server

Hello

I am working through the RHCE Linux Study Guide (Michael Jang) and part of the course is learning how to configure a network installation. The first procedure is to copy the files from the Installation DVD to a new directory I created as follows:

Code:
# mkdir /inst

The problem I'm having is a lack of disk space on the /dev/sda2 filesystem where /inst is located. Please look at the output below:

Code:
[root@twood1 ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda2             3.8G  2.8G  820M  78% /
/dev/sda5              14G  164M   13G   2% /home
/dev/sda1              46M   16M   28M  38% /boot
tmpfs                 506M     0  506M   0% /dev/shm

As you can see, only 3.8G is allocated to /dev/sda2, and the size of the installation DVD is 3.89G so is there a way of allocating more space to the sda2 filesystem from,say, sda5 which has used only 2% of its capacity?

I am using a CentOS iso image version of RHEL5:

Code:
cat /etc/redhat-release
CentOS release 5.5 (Final)

This is a virtual machine running on VMware player.

I suspect that re-configuring filesystems will be covered under the Logical Volume Manager section of the book, but if anyone can give a bit of advice first-hand, I would be grateful.

Last edited by Scott; 09-08-2010 at 02:15 PM.. Reason: Code tags, please...
# 2  
Old 09-08-2010
You don't have to put inst under /. You can put it under /home/ and adjust the settings accordingly.
This User Gave Thanks to Corona688 For This Post:
# 3  
Old 09-08-2010
Alternately, you can move the directory to /home/inst and then create a symbolic link to /inst if you don't want to or cannot, for some other reason, change your configuration
This User Gave Thanks to mark54g For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

AIX NFS Server and NFS Client

Hi 2 ALL, try to run NFS Server in AIX 7.1 : 1. Step by step on NFS Server node mkdir /tmp/test chgrp staff /tmp/test chmod 775 /tmp/test-- create export directory (fs) mknfsexp -d /tmp/test -t ro exportfs -va show mount -e :/# exportfs -av exports: 1831-187 re-exported /tmp/test... (4 Replies)
Discussion started by: penchev
4 Replies

2. Solaris

Configuration of jump start/NFS server for sol10/sol11 OS installation.

Hi folks, Is it possible to configure Solaris OS install server with NFS method and flar images? I want to configure a kind of jump start server to install flar images. Since there is no support for flar images in soalris11, It is possible to configure single server to install OS on both... (2 Replies)
Discussion started by: Vaishey
2 Replies

3. Shell Programming and Scripting

Creating if statement for nfs

What would be correct syntax in a script to check to see if a /export/nfs/home mount point is mounted and if not stop/abort? OS is Solaris 10 using standard VI ksh shell. Here is the script. Please tell me where you see the problem. #!/bin/bash # # This script is run as root to sync AMI PROD... (0 Replies)
Discussion started by: soupbone38
0 Replies

4. UNIX for Dummies Questions & Answers

Permission Denied creating file under nfs mount

I have two servers, 82 and 70. My exports file on 82 reads / ...70(rw) on 70 I have a mountpoint called mnt_for_82 I execute on 70 mount -t nfs -o rw ...82:/ mnt_for_82 I go to server 70 and indeed can read and travers the mounted subdirectories. However, I try... (0 Replies)
Discussion started by: blaine.miller
0 Replies

5. Solaris

Solaris 9 as a nfs client -- centos as a nfs server.

Hello, I have a centos as nfs server, its name is centos_A. After I finish the setup of the nfs server, the other linux can access this nfs server immediately via /net/centos_A/* But, My solaris 9 can not access /net/centos_A/* immediately. I have to leave /net/centos_A, and wait for about... (1 Reply)
Discussion started by: bruceharbin
1 Replies

6. UNIX for Dummies Questions & Answers

NFS Server

How can i create a nfs share in Windows? (4 Replies)
Discussion started by: proactiveaditya
4 Replies

7. Solaris

NFS write failed for server.....error 11 (RPC: Server can't decode arguments)

Hello! I have a Linux nfs server (called server100 below) with a export nfs. My problem is that the Solaris client (called client100 below) doesn't seems to like it. In the Solaris syslog I got following messages (and after a while the solaris client behave liked its hanged/to buzy). Also see... (3 Replies)
Discussion started by: sap4ever
3 Replies

8. Solaris

how do I make my workstation an installation server for a remote server?.

Is there a way I can make my Sun workstation as a installation server for a remote server?. (3 Replies)
Discussion started by: calsum
3 Replies

9. UNIX for Dummies Questions & Answers

NFS SERVER.....not responding

Hi i am using HPUX11.00 and i am facing a starnge problem after some time when i log on a message is coimng NFS server not responding still trying....and it keps on coming there is no other way but to log out..form the server and start once again... there is no file system exported or NFS... (3 Replies)
Discussion started by: Prafulla
3 Replies
Login or Register to Ask a Question