-1
votes
0answers
15 views

automatically reply with empty file on request to folder [closed]

i have specific software which accepts а folder as an input parameter. it expects this folder to contain files, which it needs to process. content of the files is not important, but their existence ...
1
vote
2answers
70 views

Linux weird Folder Permission needed (CentOs)

I don't know if what I am asking now is possible, but if it is, that would be great. I have a public folder where some users have access. I want to prevent all these users from creating subfolders ...
-1
votes
1answer
29 views

Add linux user on windows shared folder [closed]

I would like to share a folder on my Windows Server. I would like my linux users can access to it. How can I do it ? Did I need to add my Linux server in my domain ? Thanks
0
votes
1answer
76 views

shell script to loop through wildcard matched directories

I am trying to loop through directories that match a wildcard. This works fine in command line. But does not work in Shell script. Any idea? for dirs in /var/www/html/my.domain.com/v*; do echo ...
0
votes
2answers
124 views

What is the maximum allowed sub-folder?

At first I wanted to ask "What is the maximum allowed sub-folder for a windows OS" But then I figured maybe my web hosting provider isn't on windows but on linux or something else. So I'm asking what ...
0
votes
2answers
215 views

How to find a particular folder through terminal in fedora

Presently i am using linux(Fedora 15) and i ma trying to search a folder in the entire file system like with below command find / -name "apache-tomcat*" The execution of the above command is ...
1
vote
1answer
79 views

How to sync 2 folders with all subfolders without overwriting

I'm in linux (Ubuntu 12.04). I have 2 folders, folder A and folder B. (both have the same subfolders). I would like to copy all files from folder B (and from all subfolders) which are not in folder A ...
0
votes
0answers
103 views

Automatically mount external drives to folders inside a specific folder [closed]

I want that each time Windows 7 discovers that a new external drive of any sort connects to my pc, it will automatically create a folder (e.g. disk, disk2 etc.) inside a specific folder for the drive ...
0
votes
2answers
113 views

Check linux folder and subfolder (only) size

I have the following folder structure: /AAAA/BBBB/1111 /AAAA/BBBB/2222 /AAAA/BBBB /AAAA/CCCC /AAAA/DDDD/3333 /AAAA/DDDD /AAAA I want to get the size of these folders, but just from the folders and ...
0
votes
1answer
99 views

tar Linux command exluding subdirectories´ hierarchies (but including their files)

I have the folder a with two files (1,2), and the subfolder b with another two files (3,4). I ´d like to tar a with '1,2,3,4' files in the tar file, but not including b. (By default (tar cvf), b ...
0
votes
2answers
61 views

How to output the non-readable contents of a directory in bash

In bash how would one output the non-readable contents of a directory? For example, let's say the directory is ~/foo, and there's a non-readable folder ~/foo/folder with a file ...
12
votes
5answers
6k views

What does “opt” mean (as in the “opt” directory)? Is it an abbreviation? [closed]

What does "opt" mean (as in the "opt" directory)? I commonly see this directory in Unix systems with development tools inside. Is it an abbreviation?
2
votes
3answers
47 views

Stacking linux folder contents to appear as one folder

Does anyone know if there's anyway to make the contents of one folder to appear as just one, through pointers or links or something? So for example if in Linux I have folders like /home/2012/ ...
4
votes
2answers
1k views

How to read all files in a folder using C

I wish to read all the text files in a particular folder. The files' names do not have any common pattern in them- else the task would have been easier. //read a file from the directory //Perform a ...
0
votes
3answers
634 views

Zip folder recursively, save for a given sub folder (Linux)

In Linux zip, is it possible to zip a folder recursively except for a given sub-path? For instance, to zip 'base_folder' and all its sub folders except 'base_folder/sub_folder'. Is it possible? And ...
2
votes
2answers
1k views

Compare 2 Folders and Find Files with Differing Byte Counts

Using Gnome in Linux Mint 12, I copied a Folder of about 9.7 GB (containing a complex tree of subfolders) from one NTFS Flash Drive to another NTFS Flash Drive. According to Gnome the file counts ...
0
votes
1answer
1k views

Unrar archive with folders in Debian?

I have the task: I have the Windows-made rar-archive (folders, files in it and so on), that via FTP was copied to Linux server. I want to unrar this archive to keep the file structure as it was in ...
0
votes
1answer
1k views

Why can't I access this folder? [closed]

A while back I bought a 1TB USB external drive. I formatted it ext4 in Ubuntu and copied a bunch of files / folders to it from several machines, all to /home/machinename/whatever, respectively. At ...
1
vote
4answers
577 views

Linux - Rename all folders to upper in a destination

I got a folder (lets say it's name is ../TEMPO) with many folders inside [A,B,C..Z] on a linux machine. Each folder has 3 more levels of folders. Some of the deeper folders are with lowercase name, ...
1
vote
1answer
99 views

Determine why or how RHEL 5.6 /root/bin folder being emptied?

I have a number of RHEL 5.6 servers all built from a single template in vmware. These servers have a number of scripts that reside in /root/bin but on some of the servers, I'm finding that the folder ...
0
votes
2answers
52 views

How can I generate a folder with the last X files added?

So I have a huge folder full subfolders with tons of files, and I add files to it all the time. I need a subfolder in the root of that folder with a symlink of the last 10-20 files added so that I ...
1
vote
3answers
64 views

Security: Is it a good practice to name folders on the server that are difficult to guess?

Security question: Is it a good practice to name folders on the server by names that are difficult to guess (8+ symbols, not a simple "admin" or "services")? I'm asking about folders that contain not ...
0
votes
6answers
2k views

c++ list all directories and subdirectories within in (LINUX )

I am new in c ++ . could someone please give me some code of how to get all directories and all it's subdirectories RECURSIVELY in LINUX. i haven't found anything on internet that could help me ( or ...
1
vote
2answers
513 views

Changing folder permission only not files in linux

I am trying to change folder permission on every folder in my site but not the files. I can list them by doing ls -l | egrep '^d' but is there any way to do this: chmod 751 | egrep '^d', i get an ...
2
votes
2answers
2k views

Diff of two directory trees to create file/folder level patch (incl. binary files)

There's lots of solutions for creating a file level patch for text files and the like. What I'm looking for is an easy script/shell command that will compare oldversion/ newversion/ and give me a tree ...
0
votes
3answers
931 views

Linux Script to get time in seconds when folder was last modified

I need a linux bash script to know the time in seconds when a particular folder was modified. Can someone please help me? My current script below is getting the current time stamp and the last time ...
2
votes
1answer
1k views

calculate checksum for a folder on windows and verify on linux

I have the following requirement: Calculate one checksum (SHA1 preferred) from an entire folder. This has to be done on Windows. Move this folder from a Windows to a Linux box. Verify the entire ...
0
votes
2answers
166 views

On linux is there any tool can compare 2 flolders and produce a patch file?

A,B,C file in directory /opt/src D,E,A file in dircory /opt/dest compare src and dest, figure out should add B,C to dest and delete D,E, and see if A is changed and give A a binary patch or just to ...
81
votes
9answers
212k views

How to set chmod for a folder and all of its subfolders and files in Linux Ubuntu Terminal?

So I want a way to set chmod 755 to /opt/lampp/htdocs and all of its content including subfolders and files, and If I create a new folder or file the chmod of that should be also 755. chmod 75 ...
0
votes
1answer
157 views

Including files issue with relative paths on a linux system

I have the following directory tree structure: /index.php /code/inc/variables.php /code/inc/config.php index.php is the file that is called. On our development system in: /code/inc/variables.php, ...
0
votes
2answers
263 views

incremental backup of folder in linux whilst retaining attributes/ownership

I'm trying to backup a folder (e.g) /web/sites to /backups/websites and retain attributes, etc. cp -Rp retains the information, yet isn't incremental rsync -va seems to be great for incremental yet ...
2
votes
4answers
4k views

How to get the owner and group of a folder with Python on a Linux machine?

How can I get the owner and group IDs of a directory using Python under Linux?