Sponsored Content
Operating Systems BSD Connecting a samsung galaxy siii to freebsd Post 302719891 by DGPickett on Tuesday 23rd of October 2012 10:11:49 AM
Old 10-23-2012
Yes, now that we can see that it is a symbolic link inode, what is the nature of the thing it points to? The -L of ls is like the -follow in find, or stat() versus lstat(): Man Page for stat (linux Section 2) - The UNIX and Linux Forums

Well, that is what ls tells us -- what sort of inode do we have so far.
 

5 More Discussions You Might Find Interesting

1. IP Networking

Connecting FreeBSD with WindowsXP

Hey, I have two ethernet cards in freebsd box. My freebsd is connected to router using one ethernet card so other one is free. How can I connect these two computers using RJ45 so that my Windows box will have internet access as well as it will be able to read Samba shared files? Thanks. (1 Reply)
Discussion started by: kamsel
1 Replies

2. Android

Mini Review: Samsung Galaxy S (Android 2.1) v. Nokia E63

Well, I've had my new Galaxy S around one day now and I must say, I am not sure if I regret buying it or not. Before buying it, I read a lot of reviews about the Galaxy S (e.g. Samsung I9000 Galaxy S review: From outer space), including reviews of problems with the GPS and some intermittent WiFi... (6 Replies)
Discussion started by: Neo
6 Replies

3. Android

can I upgrade samsung galaxy SII to android 4

I am thinking of buying samsung galaxy S II. I would like to know, does this phone capable to support ICS ? Because I am not sure if to buy now and just upgrade the phone to then next OS or should I wait to but the next phone version? (3 Replies)
Discussion started by: programAngel
3 Replies

4. What is on Your Mind?

My Experience: Samsung Galaxy Phones versus the iPhone6

Just a quick note and not really a detailed review of mobile phones.... I have been a Samsung Galaxy owner since the first Galaxy S came out on the market. On a daily basis I work on two MacBook Air computers; but I wanted the openness of an Android phone; so I bought the Galaxy S, Galaxy S2,... (3 Replies)
Discussion started by: Neo
3 Replies

5. UNIX for Dummies Questions & Answers

Problem connecting FreeBSD VM(Hyper-v) to internet

I created a VM for FreeBSD on hyper-v and i am having trouble connecting it to the internet. My virtual machine config are as below: 100 GB HD 1GB RAM Generation 1 Two Network adapters 1. Legacy Network Adapter 2. Network Adapter both are connected to network switch "Internet" which... (2 Replies)
Discussion started by: Vishawdeep
2 Replies
LSTAT(3)								 1								  LSTAT(3)

lstat - Gives information about a file or symbolic link

SYNOPSIS
array lstat (string $filename) DESCRIPTION
Gathers the statistics of the file or symbolic link named by $filename. PARAMETERS
o $filename - Path to a file or a symbolic link. RETURN VALUES
See the manual page for stat(3) for information on the structure of the array that lstat(3) returns. This function is identical to the stat(3) function except that if the $filename parameter is a symbolic link, the status of the symbolic link is returned, not the status of the file pointed to by the symbolic link. EXAMPLES
Example #1 Comparison of stat(3) and lstat(3) <?php symlink('uploads.php', 'uploads'); // Contrast information for uploads.php and uploads array_diff(stat('uploads'), lstat('uploads')); ?> The above example will output something similar to: Information that differs between the two files. Array ( [ino] => 97236376 [mode] => 33188 [size] => 34 [atime] => 1223580003 [mtime] => 1223581848 [ctime] => 1223581848 [blocks] => 8 ) ERRORS
/EXCEPTIONS Upon failure, an E_WARNING is emitted. NOTES
Note The results of this function are cached. See clearstatcache(3) for more details. Tip As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to "Supported Protocols and Wrappers" to determine which wrappers support stat(3) family of functionality. SEE ALSO
stat(3). PHP Documentation Group LSTAT(3)
All times are GMT -4. The time now is 04:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy