ФС для больших файлов


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory ФС для больших файлов
Prev   Next
# 2  
Old 12-24-2009
Hello.

Per our forum rules, all posts must be in English.

We do provide translation services for posts from English to a number of languages as a benefit to users. However, posts must be in English.

Please repost in English.

Thank you for your cooperation.

The UNIX and Linux Forums.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

What is Your Favorite Editor for Linux and UNIX? | A Video in 1080 HD

We have asked UNIX.com users over the years what is their favorite editor and why. Here is the top three answers. Here is a new YT video on this question: What Editor Does Everyone Use? https://youtu.be/gqE8RTZZt9g Of course, vi was the overwhelming favorite. Credits: 1080 HD... (3 Replies)
Discussion started by: Neo
3 Replies

2. Shell Programming and Scripting

вызов sh-скрипта в awk

Добрый день! имеется такая последовательность: 1.awk file.txt | 2.awk, где 1.awk разбирает тхт файл, а 2.awk форматирует и выводит. В разобранных данных имеется дата, теперь надо по ней выводить день недели. День недели можно определять, напр., след. образом: #!/bin/sh cal -m 09 2010 | awk... (1 Reply)
Discussion started by: d2e8k
1 Replies

3. Solaris

Make utility - несколько вопросов к спецам

Помогите с 'make' или с 'makefile' написанием. Я хоть и понимаю, но вот взялся использовать для своих целей и столкнулся с некоторыми проблемами, которые не удается разрешить чтением 'man'. 1. О Макро: (в качестве переменной) ясно с их об'явлением в самом начале или с командной строки. Но ... (1 Reply)
Discussion started by: alex_5161
1 Replies
Login or Register to Ask a Question
xfs_freeze(8)						      System Manager's Manual						     xfs_freeze(8)

NAME
xfs_freeze - suspend access to an XFS filesystem SYNOPSIS
xfs_freeze -f | -u mount-point DESCRIPTION
xfs_freeze suspends and resumes access to an XFS filesystem (see xfs(5)). xfs_freeze halts new access to the filesystem and creates a stable image on disk. xfs_freeze is intended to be used with volume managers and hardware RAID devices that support the creation of snapshots. The mount-point argument is the pathname of the directory where the filesystem is mounted. The filesystem must be mounted to be frozen (see mount(8)). The -f flag requests the specified XFS filesystem to be frozen from new modifications. When this is selected, all ongoing transactions in the filesystem are allowed to complete, new write system calls are halted, other calls which modify the filesystem are halted, and all dirty data, metadata, and log information are written to disk. Any process attempting to write to the frozen filesystem will block waiting for the filesystem to be unfrozen. Note that even after freezing, the on-disk filesystem can contain information on files that are still in the process of unlinking. These files will not be unlinked until the filesystem is unfrozen or a clean mount of the snapshot is complete. The -u flag is used to un-freeze the filesystem and allow operations to continue. Any filesystem modifications that were blocked by the freeze are unblocked and allowed to complete. One of -f or -u must be supplied to xfs_freeze. NOTES
A copy of a frozen XFS filesystem will usually have the same universally unique identifier (UUID) as the original, and thus may be pre- vented from being mounted. The XFS nouuid mount option can be used to circumvent this issue. In Linux kernel version 2.6.29, the interface which XFS uses to freeze and unfreeze was elevated to the VFS, so that this tool can now be used on many other Linux filesystems. SEE ALSO
xfs(5), lvm(8), mount(8). xfs_freeze(8)