Displaying 2 results from an estimated 2 matches for "aacddijssu".
2006 Jul 10
2
chattr +T not implemented?
...te isn't there:
# lsattr -d /usr/local/lepus-bb/a-0607
------------- /usr/local/lepus-bb/a-0607
Is this attribute implemented? The manual pages entry for chattr
suggests it is, but when I check the chattr usage, "T" isn't listed:
#chattr -v
usage: chattr [-RV] [-+=AacDdijsSu] [-v version] files...
FWIIW
# cat /proc/version
Linux version 2.4.21-40.ELsmp (bhcompile at hs20-bc1-7.build.redhat.com)
(gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-54)) #1 SMP Thu Feb 2
22:22:39 EST 2006
Kind regards,
Herta
Disclaimer: http://www.kuleuven.be/cwis/email_discla...
2008 Sep 01
0
Feature request: preallocation of directories
...struct stat64
#else
#define LSTAT lstat
#define STRUCT_STAT struct stat
#endif
const char *dest_dir = "/mnt";
const char *src_dir = "/";
int blocksize = 4096;
int dest_len = 4;
int silent = 0;
dev_t xdev;
static void usage(void)
{
fprintf(stderr,
"Usage: %s [-RVf] [-+=AacDdijsSu] [-v version] files...\n",
program_name);
exit(1);
}
static int copy_dir_proc(const char *, struct dirent *, void *);
static int copy_dir(const char * name)
{
unsigned long flags;
struct stat st;
char *newname;
off_t size;
char fill[250];
int i, l, fd, num;
int recurse;
if (...