- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Moving other filesystem from root filesystem
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
01-06-2005 11:53 PM
01-06-2005 11:53 PM
Moving other filesystem from root filesystem
Please, I have installed SuSE Linux 8.2 (i586) - Kernel 2.4.20-4GB (4). And configured it to my network. But on running the following command I discovered that: /usr, /home, /opt, /tmp, /var, and /proc filesystem are all in root (/) filesystem. How do I move/recreate these filesystem to different partition?
Thanks.
Charles.
linux:~ # df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda2 9614600 1789056 7825544 19% /
shmfs 62676 0 62676 0% /dev/shm
linux:~ # df -k /
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda2 9614600 1789056 7825544 19% /
linux:~ # ls -l /
total 110
drwxr-xr-x 20 root root 464 2005-01-04 09:37 .
drwxr-xr-x 20 root root 464 2005-01-04 09:37 ..
drwxr-xr-x 2 root root 2112 2004-11-24 05:07 bin
drwxr-xr-x 3 root root 416 2005-01-07 04:50 boot
drwxr-xr-x 29 root root 94792 2005-01-07 05:01 dev
drwxr-xr-x 52 root root 5696 2005-01-07 05:04 etc
drwxr-xr-x 3 root root 72 2004-11-24 05:36 home
drwxr-xr-x 7 root root 2664 2004-11-24 05:00 lib
drwxr-xr-x 4 root root 96 2003-03-18 09:49 media
drwxr-xr-x 2 root root 48 2003-03-18 09:49 mnt
drwxr-xr-x 6 root root 152 2004-11-24 05:18 opt
dr-xr-xr-x 70 root root 0 2005-01-04 09:36 proc
drwx------ 12 root root 576 2005-01-07 04:38 root
drwxr-xr-x 3 root root 7064 2004-11-24 05:05 sbin
drwxr-xr-x 4 root root 96 2004-11-24 04:50 srv
drwxrwxrwt 21 root root 696 2005-01-07 05:15 tmp
drwxr-xr-x 12 root root 344 2004-11-24 05:02 usr
drwxr-xr-x 14 root root 360 2004-11-24 04:53 var
linux:~ # more /etc/fstab
/dev/hda2 / reiserfs defaults 1 1
/dev/hda1 swap swap pri=42 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
/dev/cdrom /media/cdrom auto ro,noauto,user,exec 0 0
/dev/fd0 /media/floppy auto noauto,user,sync 0 0
linux:~ #
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 01:41 AM
01-07-2005 01:41 AM
Re: Moving other filesystem from root filesystem
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 02:34 AM
01-07-2005 02:34 AM
Re: Moving other filesystem from root filesystem
1/You must ensure that have enough space for make new patition or add new disk to your system.
2/Backup directory which you want to recreate.
3/Create new partition and restore data to new partition.
4/Mount the new partition to directory which you want to recreate.
5/Edit file /etc/fstab , and add new line, i.e.
/dev/hda4 /yourdir reiserfs defaults 1 1
instead of hda4 and /yourdir for your adapt to real system.
NiCK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 05:11 AM
01-07-2005 05:11 AM
Re: Moving other filesystem from root filesystem
Here is the requested info:
linux:~ # fdisk -l
Disk /dev/hda: 10.1 GB, 10110320640 bytes
255 heads, 63 sectors/track, 1229 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 1 32 257008+ 82 Linux swap
/dev/hda2 * 33 1229 9614902+ 83 Linux
linux:~ #
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 07:10 AM
01-07-2005 07:10 AM
Re: Moving other filesystem from root filesystem
It looks there is only 1 disk (/dev/hda)with 2 partitions (hda1 and hda2) in the system. I saw no free space nor available partitions for you to move the filesystems to different partitions. You have to add disk(s) and replace the 10G disk with a bigger one to accomplish your goal, if you realy want to do so.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 01:51 PM
01-07-2005 01:51 PM
Re: Moving other filesystem from root filesystem
It seems haven't free space to recreate new partition. And I give you 2 suggestion.
1/ add new harddisk to recreate new partition and mount point , like my foregoing suggestion.
2/ backup useful and important data , and reinstall os , recreate appropriate size partition, then restore data
NiCK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 08:47 PM
01-09-2005 08:47 PM
Re: Moving other filesystem from root filesystem
Thanks for all your suggestion, I think, I will just backup relevant files and reinstall the OS. Though, I have being trying to dodge from reinstallation and adding more hard drives.
Cheers.
Charles
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 09:08 PM
01-09-2005 09:08 PM