Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

directory

Ubuntu 10.10 Samba Standalone Server With tdbsam Backend
Sunday, 06 March 2011 15:16

Ubuntu 10.10 Samba Standalone Server With tdbsam Backend

This tutorial explains the installation of a Samba fileserver on Ubuntu 10.10 and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access.

Read more: http://howtoforge.com/ubuntu-10.10-samba-standalone-server-with-tdbsam-backend

 
Get all files from directory and any subdirectories recursively
Friday, 05 November 2010 12:11
Use following code to recursively get *all* files inside a directory and any subdirectories at any depth.




List FilesCollection = new List();

public void GetFilesRecursively(DirectoryInfo directory)
{
FileInfo[] files = directory.GetFiles();
FileCollection.AddRange(files);

DirectoryInfo[] dirs = directory.GetDirectories();
if (dirs == null)
return;
else
{
foreach (DirectoryInfo dir in dirs)
{
GetFilesRecursively(dir);
}
}
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/TCBtlO5nRh8/12587

 
OpenSUSE 11.3 Samba Standalone Server With tdbsam Backend
Wednesday, 27 October 2010 11:49

OpenSUSE 11.3 Samba Standalone Server With tdbsam Backend

This tutorial explains the installation of a Samba fileserver on OpenSUSE 11.3 and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access.

Read more: http://howtoforge.com/opensuse-11.3-samba-standalone-server-with-tdbsam-backend

 
Mandriva 2010.1 Spring Samba Standalone Server With tdbsam Backend
Friday, 27 August 2010 16:16

Mandriva 2010.1 Spring Samba Standalone Server With tdbsam Backend

This tutorial explains the installation of a Samba fileserver on Mandriva 2010.1 Spring and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access.

Read more: http://howtoforge.com/mandriva-2010.1-spring-samba-standalone-server-with-tdbsam-backend

 
Fedora 13 Samba Standalone Server With tdbsam Backend
Tuesday, 03 August 2010 15:19

Fedora 13 Samba Standalone Server With tdbsam Backend

This tutorial explains the installation of a Samba fileserver on Fedora 13 and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access.

Read more: http://howtoforge.com/fedora-13-samba-standalone-server-with-tdbsam-backend

 
2
Next
End


Page 2 of 2
Taxonomy by Zaragoza Online