Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 11:37 AM
07-24-2001 11:37 AM
Mounts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 11:47 AM
07-24-2001 11:47 AM
Re: Mounts
In unix it is more easy.
say you have mount point /mydir earlier then
#>cd /
#>mkdir mydir
Now you have mydir is as mount point.
If you do restore on it and if you trying to mount external disk then you have to use vgimport vg0? /dev/dsk/c?t?d?
vgchange -a y vg0?
mount /dev/vg0?/lvlol? /mydir
so many question marks(?) that you have to figure out.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 11:51 AM
07-24-2001 11:51 AM
Re: Mounts
This can be very easy or it could involve creating a volume group, logical volumes, and filesystems. None of that is difficult but you could clobber the system if you don't know what you are doing.
Let's do easy first:
If you really have the space but the filesystems names are wrong, you can fix that in two ways.
1) Unmount an existing filesystem and remount it as another. e.g. you have /u01 and you need to make it /u02.
a) umount /u01
b) mkdir /u02
c) vi /etc/fstab; find the /u01 entry and change it to /u02.
d) mount /u02
You are done
2) Create a symbolic link from /u02 to /u02
ln -s /u01 /u02
You are done.
Now for the scary ones. Create a new volume group/logical volume. In your case, I would use SAM. The important thing is to determine that the particular device is not really used.
e.g. just because you don't see it with bdf does not mean that a logical volume is not being used for swap space.
If you want to try this:
sam -> Disks & Filesystems
Maybe volume groups, maybe logical volumes - it depends. Use the online help.
Hope this gets you started, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 11:35 PM
07-24-2001 11:35 PM
Re: Mounts
It is very easy in Unix. I will write down the syntax of mount here.
#mount source mountpoint
Example
U have a file system in /dev/vg01/lvol1..u want to mount this to /data. Follow these
#mkdir /data
#mount /dev/vg01/lvol1 /data
U are done..If U want this to be added in /etc/fstab
#mount -p > /etc/fstab
for more information, See man page of mount.
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2001 02:21 AM
07-25-2001 02:21 AM
Re: Mounts
create a mount point #mkdir /mnt_pt
then mount #mount /dev/xxx/xxx /mnt_pt