- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Move /.mozzila to new file system
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
04-28-2004 03:32 AM
04-28-2004 03:32 AM
Thanks in advance for your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 03:39 AM
04-28-2004 03:39 AM
Re: Move /.mozzila to new file system
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 03:43 AM
04-28-2004 03:43 AM
Re: Move /.mozzila to new file system
lvcreate /dev/vg02/lvol9
lvextend -L 1000 /dev/vg02/lvol9
newfs -F vxfs /dev/vg02/rlvol9
2. stop any processes using your directory
in your case mozilla
3. mount new FS to temporary mountmoint
mkdir /.mozilla.new
mount /dev/vg02/lvol9 /.mozilla.new
4. "copy" any data to new FS
cd /.mozilla
find . | cpio -pdmuvx /.mozilla.new
(check content of /.mozilla.new)
5. umount new FS and "disable" old .mozilla
umount /.mozilla.new
mv /.mozilla ./mozilla.old
mv /.mozilla.new /.mozilla
6. modify /etc/fstab
add a line like
/dev/vg02/lvol9 /.mozilla vxfs delaylog 0 2
7. mount it finally
mount -av
8. restart the application
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 03:49 AM
04-28-2004 03:49 AM
Re: Move /.mozzila to new file system
9. check application and if all working file
rm -r /.mozilla.old
(you want to get space in root filesystem)
:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 04:16 AM
04-28-2004 04:16 AM
Solution1. you can try to "remove temporary Internet files" within you mozilla GUI.
Dont know where this is located within this GUI
2. quicker than creating a new filesystem is to find an existing one with enough space and using a symbolic link.
- du -skx /.mozilla
that is the size in KB you need elsewhere
- bdf
find a filesystem (not /tmp or /var/tmp pls)
where much more space is available.
Lets say its /usr for example.
Then
mv /.mozilla /usr/local/root.mozilla
ln -s /usr/local/root.mozilla /.mozilla
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 05:12 AM
04-28-2004 05:12 AM
Re: Move /.mozzila to new file system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 05:14 AM
04-28-2004 05:14 AM