- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: cat:cannot write to output
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
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
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
тАО08-09-2006 01:25 AM
тАО08-09-2006 01:25 AM
cat:cannot write to output
error 0
cat:cannot write to output.
the file size is 2147483647 bytes and i have enough space on my disk.
im giving cat file1 >> file2 (note: file2 contains already some data)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2006 01:29 AM
тАО08-09-2006 01:29 AM
Re: cat:cannot write to output
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2006 01:33 AM
тАО08-09-2006 01:33 AM
Re: cat:cannot write to output
# /usr/sbin/fsadm /mount
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2006 01:54 AM
тАО08-09-2006 01:54 AM
Re: cat:cannot write to output
As was already mentioned, you likely do not have large file support enabled on the filesystem.
# umount /mountpoint
For vxfs:
# fsadm -F vxfs -o largefiles /dev/vgXX/rlvolY
For hfs:
# fsadm -F hfs -o largefiles /dev/vgXX/lvolY
# mount /mountpoint
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2006 05:46 AM
тАО08-09-2006 05:46 AM
Re: cat:cannot write to output
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2006 03:22 PM
тАО08-09-2006 03:22 PM
Re: cat:cannot write to output
but when i used to find difference i.e
diff file1 file2 it is giving
warning:new line not ended properly
(for 2 files.)and no issues with permissions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2006 04:49 PM
тАО08-09-2006 04:49 PM
Re: cat:cannot write to output
you can check with fstyp command. f_flag 0 means no largefile support any value means largefile supporte is enabled.
#fstyp -v /dev/vg00/library
vxfs
version: 4
f_bsize: 8192
f_frsize: 1024
f_blocks: 106496
f_bfree: 79381
f_bavail: 74420
f_files: 19876
f_ffree: 19844
f_favail: 19844
f_fsid: 1073741836
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 0 ==>if it is zero, no large file support.other value represents largesupport.
f_fsindex: 7
f_size: 106496
To enable large filesupport
# umount /mountpoint
# fsadm -F vxfs -o largefiles /dev/vgXX/rlvolY
# mount /mountpoint
---------------------------------------
if online jfs installed your can use fsadm to check as well enable the largefile suppror.
fsadm -F vxfs /sapdata
nolargefiles
# fsadm -F vxfs -o largefiles /dev/vgXX/rlvolY
Regards
V.Manoharan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2006 11:26 PM
тАО08-14-2006 11:26 PM
Re: cat:cannot write to output
As well as the methods given above, the simplest way to enable large files is to use SAM. Select the filesystem, choose Modify, and click on the check box for "Allow Large Files". When you click OK, SAM will then unmount the filesystem, and remount it with the option enabled (so you will have to make sure the filesystem is not being used).
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2006 11:43 PM
тАО08-14-2006 11:43 PM
Re: cat:cannot write to output
Another way to check if largefiles is enabled on the filesystem:
# grep '/mountpoint' /etc/fstab
or
# grep '/dev/vgxx/lvoly' /etc/fstab
Look for 'largefiles'.
This method is accurate as long as the filesystem wasn't manually mounted.
PCS