The hidden-files tag has no wiki summary.
1
vote
0answers
34 views
+50
How to hide shadow-copies in NFS shares?
I have a Ubuntu server with both samba and nfs-server.
The server does snapshotting for the exported directory
and the samba server uses the snapshots to emulate
shadow copies. ( vfs objects = ...
0
votes
1answer
48 views
Why is my access.log file not accessible?
I have an apache installation on my dev machine. The httpd.conf is all set up right. By the config file I should be getting an access.log file in my logs directory, but it doesn't seem to exist in ...
0
votes
0answers
40 views
WinSCP doesn't show big file
I'm using WinSCP 4.1.9. I logged into my server and the file doesn't show up. From another machine with WinSCP 4.2.9 I can see the file. The files is about 2,7 gigs. And now the funny thing:
If I log ...
0
votes
2answers
165 views
how i can create hidden folder in unix-AIX Version 6.1
i try this command mkdir .done but it dose not worke
now how i can create hidden folder ....
3
votes
3answers
2k views
chmod all files (including hidden files) in a directory in Linux (not recursively)
Yesterday I did something stupid which I today realised. I ran:
/root# chmod o-rwx * .*
This supposed to remove read, write and execute permissions for the world on all files in the current ...
2
votes
2answers
2k views
How to unhide hidden NTFS folder? (option greyed out, maybe it's a system hidden folder)
I have this perplexing folder that I'm the "Owner" and I have all NTFS rights on it: it's invisible. I would like to make it visible without having to check the "Hide protected operating system files" ...
0
votes
2answers
152 views
How to get a content of a hidden file over https?
Now I am successfully using WebClient.DownloadString to get file content from ESX server. My URI is something like:
...
1
vote
1answer
98 views
How do I access the hidden “R & R” partition on a Lenovo laptop?
I have some Lenovo laptops (T410 / X201) and want to get the .wim files from the R & R partition.
Anyone know how I can access it? It shows in the OS (i.e. has a drive letter assigned) but shows ...
0
votes
2answers
605 views
How to find hidden/cloak files in Windows 2003?
Here is the point.
I set Windows to display all the hidden files and protected operating system files but even after that, my antivirus (Kaspersky) is still getting a ".dll" file on ...
1
vote
1answer
2k views
How to view hidden files using Linux `find` command
On a Linux server, I need to find all files with a certain file extension in the current directory and all sub-directories.
Previously, I have always using the following command:
find . -type f | ...
0
votes
1answer
1k views
Windows Server 2003 Temporary Internet Files filling with hidden junk?
I have a server running Windows Server 2003. Nobody uses the internet from this machine. If I go to C:\Documents and Settings\(user)\Local Settings\Temporary Internet Files and right-click for ...
2
votes
3answers
766 views
Ignore windows hidden files when copying with rsync
I need to keep in sync a very large directory structure (a few hundreds GB) between a Windows machine and a Linux machine. I'm using rsync to do the copy because it automatically ignores unchanged ...
5
votes
3answers
4k views
How to delete all hidden files and directories using Bash?
The obvious solution produces an exit code of 1:
bash$ rm -rf .*
rm: cannot remove directory `.'
rm: cannot remove directory `..'
bash$ echo $?
1
One possible solution will skip the "." and ".."
...
1
vote
6answers
481 views
How to deny the web access to some files?
I need to do an operation a bit strange.
First, i run on Debian, apache2 (which 'runs' as user www-data)
So, I have simple text file with .txt ot .ini, or whatever extension, doesnt matter.
These ...
14
votes
4answers
6k views
How to make scp copy hidden files?
I often use SCP to copy files around - particularly web-related files. The problem is that whenever I do this, I can't get my command to copy hidden files (eg, .htaccess).
I typically invoke this:
...
6
votes
8answers
3k views
Is it possible to hide lost+found?
Given a partition intended solely for storing music, video and so-on, is it possible to hide the lost+found directory?
5
votes
5answers
6k views
Recursively copying hidden files - Linux
Is there an easy way to recursively copy all hidden files in a directory to another directory? I would like to back up just all the settings files in a home directory, not the normal files. I tried:
...