bodi

Bukan catatan biasa ……..

  • About
    • Baca Dulu
  • Free Area
    • Free Web Messenger
    • Free SMS
    • Ramalan Zodiak
    • Kurs & Forex Indikator
    • Google Trend
    • Peta Penunjuk Kota
    • Peta Pengukur Jarak Antar Kota
  • Sitemap
  • Contact
  • TV Online
  • Banner
  • Download

Home » Linux » Setting Up Samba In Ubuntu

Setting Up Samba In Ubuntu

Pin It Tweet
31 January, 2010
Posted by Boy Setyadi

What is Samba and when do you need it?
Samba is a set of tools to share files and printers. It implements the SMB network protocol, which is the heart of Windows networking. OS X also recognises Samba shares.

Samba can be used to:

* Act as a server for Windows (or Samba) clients: share folders and printers, including PDF pseudo-printers so all the computers in your network may write PDF files
* Act as a domain controller in a Windows network (authenticating users, etc.)
* Do some more complex things, such as using a Windows domain controller to authenticate the users of a Linux/UNIX machine

Samba is freely available under the GNU General Public License. More information about Samba can be found at http://www.samba.org.

What to install
The samba package is a meta-package intended to be installed on servers. Clients do not need this meta-package (you are acting as a client if you need to access files on another computer). For example, installing samba is not necessary if you only need your Ubuntu system to do any of the following:

* Access shared folders, drives and printers on a Windows computer (that is, act as a client with Windows servers). To do this, you only need the smbfs plugin. See MountWindowsSharesPermanently for more information.
* Have your Windows computer use (via a network) a printer that is attached to a Linux computer. CUPS can be configured to make the printer accessible to the network.
* Share directories between two Linux computers. You can use NFS or setup an SSH server on one computer and access it from other computers using an scp or sftp client, or Places -> Connect to Server… and choose “SSH” as the service type.

Nautilus Integration

If you want to be able to share folders with nautilus (the file browser), install the nautilus-share package (installed by default in Ubuntu 9.10 Desktop edition):

sudo apt-get install nautilus-share

Server

If you wish your computer to act as a Samba server (act as a file or printer server) then install the samba package (see InstallingSoftware for details):

sudo aptitude install samba

Client

The samba package is not needed on clients. Install smbfs instead (see InstallingSoftware for details):

sudo aptitude install smbfs

If you want to connect to a Samba server (Windows server or an Ubuntu server running Samba) you have two options, you can use the smbclient command or you can directly mount the samba file system via smbfs.

Command line

Ubuntu will connect to a Samba server out of the box via smbclient. This is a similar to a FTP connection. Once connected, you can use commands such as ls, cd , put, and get.

smbfs

This package allows clients to mount Samba file shares, allowing them to act as local disks. Most people will prefer this method.

Samba Client – Manual Configuration

This section covers how to manually configure and connect to a SMB file server from an Ubuntu client. smbclient is a command line tool similar to a ftp connection while smbfs allows you to mount a SMB file share. Once a SMB share is mounted it acts similar to a local hard drive (you can access the SMB share with your file browser (nautilus, konqueror, thunar, other).

Connecting to a Samba File Server from the command line

Connecting from the command line is similar to a ftp connection.

List public SMB shares with

smbclient -L //server -U user

Connect to a SMB share with

smbclient //server/share -U user

Enter you user password.

You can connect directly with

smbclient //server/share -U user%password

but your password will show on the screen (less secure).

Once connected you will get a prompt that looks like this :

smb: \>

Type “help” , without quotes, at the prompt for a list of available commands.

Connecting using CIFS

CIFS is included in the smbfs package and is a replacement for smbfs (I know, the terminology here is a little confusing).

Reference : http://linux-cifs.samba.org/

As above, install by any method, smbfs.

Allow non-root users to mount SMB shares

By default only root may mount SMB shares on the command line. To allow non-root users to mount SMB shares you could set the SUID, but I advise you configure sudo. You should configure sudo with visudo

You may either allow the gruop “users” to mount SMB shares, or add a group, samba, and add users you wish to allow to mount SMB shares to the samba group.

sudo groupadd samba
sudo adduser user samba

Change “user” to the username you wish to add to the samba group.

sudo visudo

In the “group” section add your group you wish to allow to mount SMB shares

Add a line in the “group” section :

## Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
%samba ALL=(ALL) /bin/mount,/bin/umount,/sbin/mount.cifs,/sbin/umount.cifs

Change “%samba” to “%users” if you wish to allow members of the users group to mount SMB shares.

The following will mount the myshare folder on myserver to ~/mnt (it will be in your home directory):

mkdir ~/mnt
sudo mount -t cifs //myserver_ip_address/myshare ~/mnt -o username=samb_user,noexec

Note: “samba_user” = the user name on the samba server (may be different from your log-in name on the client).

The “noexec” option prevents executable scripts running from the SMB share.

You will be asked for BOTH your sudo and then your samba_user password.

To umount,

sudo umount ~/mnt

Automagically mount SMB shares

In order to have a share mounted automatically every time you reboot, you need to do the following:

With any editor, create a file containing your Windows/Samba user account details:

gksu gedit /etc/samba/user

KDE users must use kdesu rather than gksu and instead of Gedit they can use Kwrite as editor.

… it should contain two lines as follows:

username=samba_user
password=samba_user_password

Note: “samba_user” = the user name on the samba server (may be different from your log-in name on the client). “samba_user_password” is the password you assigned to the samba_user on the samba server.

Save the file and exit gedit.

Change the permissions on the file for security:

sudo chmod 0400 /etc/samba/user # permissions of 0400 = read only

Now create a directory where you want to mount your share (e.g. /media/samba_share):

sudo mkdir /media/samba_share

Now, using any editor, and add a line to /etc/fstab for your SMB share as follows:

sudo cp /etc/fstab /etc/fstab.bak
gksu gedit /etc/fstab

Add a line for your SMB share:

//myserver_ip_address/m
yshare /media/samba_share cifs credentials=/etc/samba/user,noexec 0 0

The share will mount automatically when you boot. The “noexec” option prevents executable scripts running from the SMB share.

To mount the share now, without rebooting,

sudo mount /media/samba_share

You can unmount the share with :

sudo umount /media/samba_share

If you wish to increase security at the expense of convenience, use this line in /etc/fstab

//myserver_ip_address/myshare /media/samba_share cifs noauto,credentials=/etc/samba/user,noexec 0 0

The noexec” option prevents executable scripts running from the SMB share.

Edit /etc/samba/user, remove the password (leave just the samba user).

Now the share will NOT automatically mount when you boot and you will be asked for your samba password.

Mount the share with :

sudo mount /media/samba_share

CIFS may cause a shutdown error.

CIFS VFS: Server not responding.

There is a fix in the troubleshooting section of this forum post.

Connecting using SMBFS (deprecated)

Note: This method still works, but as outlined under the “CIFS” section above is “deprecated” (no longer maintained and pending removal from the kernel).

Mounting a share on the local filesystem allows you to work around programs that do not yet use GnomeVFS to browse remote shares transparently. To mount a SMB share, first install smbfs:

sudo apt-get update
sudo apt-get install smbfs

To allow non root accounts to mount shares, change the permissions on the smbmnt program thus:

sudo chmod u+s /usr/bin/smbmnt /usr/bin/smbumount

Note: This may be a security risk as after setting the SUID bit anyone can mount a SMB share. I advise you configure sudo, as above.

The working line in /etc/sudoers is as follows (see CIFS section above):

%samba ALL=(ALL) /bin/mount,/bin/umount,/sbin/mount.cifs,/sbin/umount.cifs,/usr/bin/smbmount,/usr/bin/smbumount

This allows any user in the samba group to mount SMB shares (you will need to create a samba group and add users).

The following will mount the myshare folder on myserver to ~/mnt (it will be in your home directory):

mkdir ~/mnt
smbmount //myserver/myshare ~/mnt

To umount,

smbumount ~/mnt

In order to have a share mounted automatically every time you reboot, you need to do the following:

Open a shell as root

sudo -s

Create a file containing your Windows/Samba user account details:

vi /etc/samba/user

…it should contain two lines as follows:

username=george
password=secret

Change the permissions on the file for security:

chmod 0600 /etc/samba/user

Now create a directory where you want to mount your share (e.g. /mnt/data):

mkdir /mnt/data

Now edit the file system table (/etc/fstab) and add a line as follows:

//server/share /mnt/data smbfs credentials=/etc/samba/user,rw,uid=bob 0 0

…where ‘bob’ is the non-root user you log into ubuntu with, ‘server’ is the name or address of the Windows machine and ‘share’ is the name of the share.

To mount the share now, just use the following command as root. It will mount automatically on subsequent reboots.

mount /mnt/data

Ubuntu Client

On the Ubuntu client using the menu at the top, go to “Places” -> “Network”. You will see an icon “Windows network” and should be able to browse to your shared folder. You will be asked for a password, leave it blank. Click the “Connect button.

(no need for a password).

If you would like to mount your SMB share using your (server) hostname rather than the IP Address, edit /etc/hosts and add your samba server (syntax IP Address hostname).

192.168.1.100 hostname

Where “hostname” = the name of your samba server.

Windows Client

On Windows open “My Computer” and navigate to “My Network Places”. Navigate to your Ubuntu server and your share will be available without a password.

Alternate : From the menu at the top select “Tools” -> “Map Network Drive”. Select an available letter for your SMB share (Default is z: ). In the “Folder:” box enter \\samba_server_ipaddress\share. Tic (Select with the mouse) the option “Reconnect at login” if you want the share to be automatically mounted when you boot Windows. Click the “Finish” box. A dialog box will appear, enter your samba user name and password. Click “OK”.

If you would like to mount your SMB share using your (server) hostname rather than the IP Address, edit C:\WINDOWS\system32\drivers\etc\hosts and add your samba server (syntax IP Address hostname).

192.168.1.100 hostname

Where “hostname” = the name of your samba server. Back to top
Samba Server Configuration – Graphical

Note: For Ubuntu 8.04 (Hardy) and later, shared folders are created directly from the folder. Browse to the location of the folder you would like to share, right-click the folder, and choose Sharing Options. Click the Share this folder.

This section should allow you to “quick start” SMB shares between Ubuntu and either Ubuntu or Windows servers. The gui method is easier to work with, because:

1. Shares are Public (browsable in Network Places)
2. A password is not set for shares (they can be mounted by anyone).

However, remember that this is less secure.

Be warned you are installing a service (server) and you may wish to install a Firewall management utility to help prevent undesired access. See also the manual configuration sections below to learn how to “hide” your shares from browsing and set a password for access.

Ubuntu Server

This section enables Ubuntu as a samba file server.

Sharing a Folder

To share a directory you must have permission to access the directory. Go to your home directory ( Places -> Home folder). Right click on the “Documents” directory and in the pop up menu select “Share Folder”.

If samba is not installed you will get a pop up menu “Sharing services are not installed”. Select “Install Windows networks support (SMB)” and deselect “Install Unix networks support (NFS)” -> then click “Install services”.

If you get an error message that the samba .deb could not be found, open a terminal and update apt-get.

sudo apt-get update

Try again and Ubuntu will download and install samba. Right click on the “Documents” directory and in the pop up menu select “Share Folder”. You will get a pop up menu “Share Folder”. Select “Windows networks (SMB)” in the pull down menu and give your share a name in the “Name” box. Unselect the “Read only” check box if you want read/write access to the share. Click the “Share” button.

Windows XP Server

This section enables Windows XP as a samba file server.

Sh
aring a Folder

1. On the Windows server, browse in explorer (“My Computer”) to the location of the folder you wish to share (C:\Documents and Settings for example). Next right click on the folder to share and select “Sharing and Security…”. In the pop-up dialog box click the “Sharing” tab. Click the “Network Setup Wizard” to configure your network to allow shares. Work your way through the wizard. Note the default workgroup is MSHOME. You may change this value if you like but all your computers should be in the same workgroup. Eventually you will be given the option to “Turn on file and printer sharing”. This is the option you want, continue with the network wizard. You will have to restart your computer for the settings to take effect -> Restart Windows.

2. After rebooting, again open explorer (“My Computer”) and navigate to the folder you wish to share. Again right click on the folder and select “Sharing and Security…”. In the pop-up dialog box click the “Sharing” tab. In the “Network sharing and security” box, tic (select with the mouse) the “Share this folder on the network” box. Give the folder a share name. This will give read only access to Ubuntu computers via samba. To allow read/write access tic (select with the mouse) the “Allow network users to change my files” box. Click the “Apply” button and close the dialog box.

Samba Server Configuration – Manual

Configuration is performed by reading and editing /etc/samba/smb.conf, the configuration file for the samba server.

There are a few graphical tools available such as “kdenetwork-filesharing” and “Swat”.

A fairly comprehensive graphical Samba configuration tool is available for KDE, by installing the “kdenetwork-filesharing” package. Once install, you can find it by launching the KDE Control Center. (Alt-F2 and then type kcontrol). Browse to Internet & Network > Samba. It is fairly easy to use.

A less friendly but also graphical tool is Swat, a web-based interface.

The following tips show how to do some basic things without installing additional software, using the command line. It is not difficult, just be careful with typos.

First open a terminal: Applications > System Tools > Terminal and open the file smb.conf

sudo nano -w /etc/samba/smb.conf

How to Save: To save in nano use “CTRL-O”, then “CTRL-X”.

Tip: Replacing nano with gedit gives you a nice graphical editor.

The file *smb.conf* is divided in several sections:

Global Settings
Debugging/Accounting
Authentication
Printing
File sharing
Misc
Share Definitions

Comments may start with either a # or a ;

Global Settings

Let’s start with Global Settings. Here you will see several lines, which you can also see in the graphical networktool like workgroup and wins server. If you changed everything to your liking already then you can skip this section, if not change to what you need. If you do not know what items mean, leave them be and read the relevant part in the real Samba-howto instead of randomly changing them. It will save you trouble-shooting later.

File Sharing (Basics)

The important part for us is File sharing. Samba shares are named in brackets, [ ], and configured by adding options in the lines that follow. Most options are boolean (yes / no).

We need to change:

[homes]
comment = Home Directories
browseable = no

# By default, the home directories are exported read-only. Change next
# parameter to ‘yes’ if you want to be able to write to them.
writable = no

This describes your /home folder. Usually you want to share this folder in a home-environment, because these are the files you want to share. To do so, make the following changes:

[homes]
comment = Home Directories
browseable = yes

# By default, the home directories are exported read-only. Change next
# parameter to ‘yes’ if you want to be able to write to them.
writable = yes

This finishes sharing your /home folder. The last thing we need to do is fixing a user.

Add users who can access your shares with the ‘smbpasswd’ command.

sudo smbpasswd -a username

New SMB password:
Retype new SMB password:
Added user username.

NOTE: the username used here should be a real user setup on your PC/Server. Reload Samba for every change to users/passwords or ‘smb.conf’

sudo /etc/init.d/samba reload

That’s the basis of Samba file-sharing. Please leave your comments about what else is needed here.

* Can/should the SMB password be different from the user’s system password? MartinSpacek – 2007-11-19

File Sharing (Advanced)

We started with the base of Samba file-sharing. The above-mentioned items should be enough to get you started. Next we will add details that you might or might not need.

If you have more than one network card

If you have more than one network card (or interface) then you have to define where you want Samba to run. In smb.conf under the [global] section, add:

interfaces = 127.0.0.1, 192.168.0.31/24
bind interfaces only = yes

The first address (127.0.0.1), is a loopback network connection (it’s your own machine). The second address (192.168.0.31), is the address of the card you want Samba to run on, the second number (24) is the subnet default for a CLASS-C network. It may vary depending on your network.

With “bind interfaces only” you limit which interfaces on a machine will serve SMB requests.

You can limit which IP address can connect to your Samba server adding these lines:

hosts allow = 127.0.0.1, 192.168.0.31, 192.168.0.32
hosts deny = 0.0.0.0/0

The loopback address must be present in the first line. The second line deny access from all IP address not in the first line.

Private and public shares in same config

First you’ll want to set this up in the [global] section of your smb.conf

[global]
security = user
encrypt passwords = true
map to guest = bad user
guest account = nobody

security = user restricts logins to users on your server. encrypt passwords = true is necessary for most modern versions of Windows to login to your shares. map to guest = bad user will map login attempts with bad user names to the guest account you specify with guest account = nobody. That is, if you attempt to login to the share with a user name not set up with smbpasswd the you will be logged in as the user nobody.

Next the private share

[private]
comment = Private Share
path = /path/to/share/point
browseable = no
read only = no

If browsable is set to no the share will not show up on graphical browsers such a “My Network Places” on Windows or Places -> Network on Ubuntu.

path is the path to the directory that you want to share out. browseable = no will have the share not show up when users browse the network. read only = no will let you, as an authenticated user, write to the share.

Finally, the public share

[public]
comment = Public Share
path = /path/to/share/point
read only = no
guest only = yes
guest ok = yes

Again, path is the path to the di
rectory that you want to share out. read only = no will allow users to write to this share. guest only = yes and guest ok = yes will allow guest logins and also force users to login as guests. The user you specified with guest account in the [global] section must have write permissions on /path/to/share/point in order to write files to the share.

Note: When Windows attempts to access a SMB share it will use the current Windows user name and password. The map to guest = bad user trick above allows access to the public share only if you give Samba an incorrect user name. If you give it a valid user name, but a bad password, the login will fail and Windows will give you a password prompt when you try to access the share. If you have the same user name for your Windows machine and your Ubuntu machine, you could be unwittingly giving the Samba server a valid user name, but invalid password. To resolve this you will either have to change the Windows user name, or to remove that user name from the Samba password file with sudo smbpasswd -x [username].

Note: The above uses security = user. To access the private shares you will have to make sure the user exists in smbpasswd. These users must also already exist as normal users on your machine. You add users to smbpasswd simply by running sudo smbpasswd -a [username] and giving a password.

Setting permissions

To set permissions of newly created documents / files edit /etc/samba/smb.conf and in the [global] section add :

create mask = 0644
directory mask = 0755

Sharing CUPS Printers

Graphical Configuration

Setup Ubuntu Print Server

1. In your menu go to System -> Administration -> Printing
2. Under “Local Printers” on the left, select the printer you wish to share. Select the “Policies” tab on the right and make sure the “Shared” box is selected.

Ubuntu Client

1. Again go to System -> Administration -> Printing
2. Click “New Printer” in the upper right. In the next menu select “Windows Printer via SAMBA”. Now enter your Ubuntu Samba Print Server (set up as above) IP address in the box on the left titled “smb://”. Click the “Browse” button.
3. Select the printer in the “SMB Browser” window (Click on the little arrows). Once you have selected your printer, check the “Authentication required” and enter your samba user name and password. Then click the “Verify” button. You should see confirmation that the share is available.
4. Click the “Forward” button and install the drivers for your printer as you would for any other printer.

Windows Client

1. Go to Control Panel -> Printers
2. Click “Add a printer” on the upper left. The printer wizard will start -> click forward. Select Network Printer and click “Next”. Select “Browse for a printer” (Top button) and click “Next”. In the next window, navigate to your Ubuntu Samba Print Server and click “Next”. Continue with the printer and driver installation.

Manual Server Configuration

If You would like to share Your printers make the following changes to Samba:

If not already done create the Samba-user You want the share to be used by.

In smb.conf uncomment and change the lines ending up with the following configuration:

########## Printing ##########

# If you want to automatically load your printer list rather
# than setting them up individually then you’ll need this
load printers = yes

# [...] // Some BSD printing stuff, do not edit if You do not need to

# CUPS printing. See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
printing = cups
printcap name = cups

and in the Share Definitions section append and/or modify the [printers] part ending up like this:

# ======================= Share Definitions =======================
# [...] // File and Folder sharing, do not edit if You do not need to

[printers]
comment = All Printers
browseable = no
path = /tmp
printable = yes
public = yes
writable = no
create mode = 0700
printcap name = /etc/printcap
print command = /usr/bin/lpr -P%p -r %s
printing = cups

Some explanation what is done:

the [printers] part defines the default-behavior for all the printers that are mentioned in “printcap name”. A sort of template how to create shares for these printers. This template is applied if “load printers” is set to true. For more detailed explanation refer to the Samba documentation.

And do not forget to reload Samba:

sudo /etc/init.d/samba reload

Securing Samba

This section was started to give some general advise on security considerations and is not an exhaustive review of samba security.

/etc/samba/smb.conf

* Networking Section – use “hosts allow” and “hosts deny”

# hosts allow = 127.0.0.1 192.168.1.0/24
hostal allow = 127.0.0.1 192.168.1.1 192.168.1.2
hosts deny = 0.0.0.0/0

* hosts deny 0.0.0.0/0 = all others.

* Shares
o When defining a share, consider the following options :
1. browseable = no ~ Shares will not show up when browsing your network.
2. users = user1 user2 ~ List of users able to access the share

When setting up a Samba share, you can limit the users who have access to your share

[private]
comment = Private Share
path = /path/to/share/point
browseable = no
read only = no
valid users = user1 user2 user3

Now only samba users user1, user2, and user3 will have access to the share “private”.

Firewall

Configure your firewall (iptables) to limit access to your server. Samba uses ports

* UDP ports 137 and 138
* TCP ports 139 and 445

Edit Smb.conf

sudo nano -w /etc/samba/smb.conf

Reload Samba

sudo /etc/init.d/samba reload

In smb.conf in section [general] add this command to share folder wth another operating system :

usershare owner only = false

source : ubuntu.com

Updated: 22 January, 2011 at 1:41 pm
Tags: "setting up samba in ubuntu", "sharing printer dari ubuntu ke windows", acces folder sharing ubuntu dari ubuntu, access point di debian 5, access samba share dari ubuntu, access sharing folder in windows xp from ubuntu via terminal, add share printer in samba gui, add user samba, add user samba ubuntu, akses foder samba di client terminal, akses samba dari ubuntu desktop, akses windows ke samba \ipguest, akses windows network drive samba ubuntu, ap debian setting, apa itu ms.home.net, apa itu mshome, apps pengatur file, arti my network places, artikel instal samba di ubuntu desktop, artikel instalasi samba ubuntu desktop, artikel share data dilinux debian.6 menggunakan samba server, artikel tentang web mail, artikel tentang webmail, artikel tentang webmail di ubuntu, bagaimana add the following line pada hosts, bagaimana cara aktifkan windows xp, bagaimana cara install samba di lokalhost, bagaimana cara install software ubuntu, bagaimana cara login dari windows xp ke ubuntu server, bagaimana cara login pada ubuntu jika login incorrect ?, bagaimana cara membuat, bagaimana cara membuat download di toolbar, bagaimana cara membuat ip manual win7, bagaimana cara mengaktifkan password nfs 2 di komputer, bagaimana cara setting print di my network place, bagaimana cara tidak connection di ninja saga, bagaimana membuat ninja saga di facebook, bagaimana menghapus mshome ?, bagaimana menginstall printer lewat terminal ubuntu, bagaimana mengunci server, bagaimana ngeprint dari clien, bagaimana set 2 eternet card, bagaimana setting cups (client) dan samba (client) pada ubuntu, bagaimana untuk membuat folder di ubuntu, bikin foldersharing samba dengan winscp, bikin ip manual, bikin join domain, bikin mshome, bikin pasword folder pada windows 7, bikin permanen folder sharing diubuntu, bikin server map network dari linux untuk windows, bikin user limited di window 7, bikin web server sendiri windows xp, bikin web server windows, bikin web server windows xp, block situs pada client mikrotik, blocking situs client, blog.bodi, blogs/viewstory/222, blok aplikasi client lewat server, blok program client server, blok situs di client via server, blokir delete folder dan file disamba, blokir facebook di acces point, blokir ip address pada ubuntu, blokir situs client dari server, blokir situs porno pada acces point, bo di configuration for win xp, buat dns 2003, buat folder di ubuntu, buat guest acc pake net win 7, buat network setup wizard di win7, buat password root di ubuntu, buat pasword folder mengaktifkan make sure private caranya, buat server data, buat server data dengan ubuntu, buat server di ubuntu, buat suoer user di ubuntu, buat user samba dilinux, buat workgroup di win server 2003, buka access permition di ubuntu, buka file sharing ubuntu, buka internet protokol, buka network places, buka pasword my network places, buka pasword my network places sumber: http://blog.bodi.web.id/tag/buka-pasword-my-network-places, buka permission di ubuntu, buka permission di windows 7, buka sharing folder di windows xp dengan ubuntu, buka sharing folder windows xp dengan ubuntu, buka sharing windows dari command line linux ubuntu, buka website command linux, c, c/ document and setting/advan/deksktop is not accesible windows xp, cannot print from windows 7 starter to ubuntu 8.04 shared printer, canon ip 1900 not responding, cara add printer di linux ubuntu, cara add printer linux, cara akses mshome yang di block, cara akses samba dari terminal, cara aktifin make this folder private, cara aktifin mshome, cara aktifkan make folder private, cara aktifkan make this folder, cara aktifkan make this folder private, cara aktifkan mkdir-p pada ubuntu 9.10, cara ambil data dari windows 7 ke linux ubuntu, cara ambil file dari server centos lewat terminal, cara ambil file dari xp ke ubuntu, cara ambil file di windows dari ubuntu, cara ambil file di windows ke ubuntu, cara ambil file di windows xp ke ubuntu, cara ambil ip ke file, cara ambil printer dari ubuntu, cara ambil printer dari ubuntu ke windows, cara atasi error network places, cara atau konfigurasi windows 7, cara bikin password buat folder yang di share windows 7, cara bikin password di folder share win 7, cara bikin server lewat network, cara blok aplikasi client lewat server, cara blok program client lewat server, cara blok situs mivo.tv, cara blokir acces point, cara blokir facebook di acces point, cara blokir lewat acces point, cara blokir mivo tv, cara blokir point, cara blokir program di clien, cara blokir sistem, cara blokir situs di client dengan software dari server, cara blokir website client dari dns server, cara blokir website melalui acces point, cara bongkar paswod pada server, cara buat folder di drive d, cara buat group dari samba untuk windows xp, cara buat mshome, cara buat my network place, cara buat my network places, cara buat network drive, cara buat network place, cara buat password administrator server 2003, cara buat password di folder sher, cara buat password di windows server 2003, cara buat password root di ubuntu, cara buat password server 2003, cara buat pasword share di windows 7, cara buat permission folder win xp, cara buat server data pake samba, cara buat server linux, cara buat server ubuntu user windows, cara buat sharing data dengan windows server 2003, cara buat sharing data di server ubuntu, cara buat ssh, cara buat ssh key di linux, cara buat ssh linux, cara buat user & password di ubuntu, cara buat user root ubuntu, cara buat user ubuntu, cara buat web server dengan xp, cara buat web server di xp, cara buat workgroup windows 7, cara buka file share ubuntu, cara buka file sharing ubuntu, cara buka internet protokol di window 7, cara buka mikrotik via telnet, cara buka password di windows server, cara buka permission di ubuntu, cara buka permission ubuntu pakai winscp, cara buka protokol, cara buka sharing di windows melalui ubuntu, cara buka winscp, cara cara meremot server linux, cara client print documen di ubuntu, cara configurasi server 2008, cara configurasi server ubuntu 9.10, cara configurasi ubuntu, cara configure ssh, cara connect printer dari ubuntu ke windows, cara copy data di ubuntu, cara copy file dari terminal, cara copy file dari ubuntu, cara copy file di terminal, cara copy file lewat terminal, cara copy file lewat terminal ubuntu, cara copy file melalui terminal, cara copy file ubuntu, cara copy file via smb, cara copy file via terminal, cara copy lewat terminal, cara copy lewat terminal ubuntu, cara copy lewat terminla di ubuntu, cara create folder di ubuntu, cara dowload cf, cara download cf, cara download file melalui terminal, cara download samba melalui terminal linux, cara download samba package, cara edit permisiion folder mapping ubuntu, cara edit print web, cara edit print website, cara file server di xp, cara hapus maystart serch, cara hapus mshome, cara hidden folder samba, cara hidden ip address di ubuntu, cara hide ip address melalui ubuntu, cara hide ip di ubuntu, cara hide ip di windows seven, cara hiden ip di ubuntu, cara hosting web di my network places, cara insatall server web dan konfigurasi, cara insstall samba dilinux ubuntu 9, cara instal 2 system window xp dan ubuntu, cara instal boxes melalui terminal ubuntu, cara instal buat web, cara instal dan konfiguransi server mail, cara instal dan konfiguransi server web, cara instal dan konfigurasi, cara instal dan konfigurasi server mail, cara instal dan konfigurasi server mail di ubuntu, cara instal dan konfigurasi server web, cara instal dan konfigurasi server web dan server mail, cara instal dan konfigurasi server web dan server mail ubuntu, cara instal dan konfigurasi server web mail, cara instal dan konfigurasi server web mail ubuntu, cara instal dan konfigurasi server web ubuntu, cara instal dan konfigurasi web server, cara instal dan konfigurasi web server di ubuntu, cara instal dns di ubuntu, cara instal include windows 7, cara instal internet pke lan card, cara instal linux ubuntu 2 system dengan xp, cara instal ls ofline, cara instal mail server, cara instal program di ubuntu, cara instal samba, cara instal samba di ubuntu 10.04, cara instal samba di ubuntu 9.10, cara instal samba di ubuntu desktop, cara instal samba offline, cara instal samba offline di ubuntu, cara instal samba secara offline, cara instal samba ubuntu, cara instal sambah offline, cara instal snakebite, cara instal software game di ubuntu dari terminal offline, cara instal software ubuntu, cara instal sofware pada ubuntu, cara instal ubuntu 9 server, cara instal ubuntu ke windows, cara instal web dan konsfigurasinya, cara instal web server ubuntu 10, cara instal windows xp di guest, cara instal windows xp pada komputer desktop, cara instalansi&konfigurasi server mail, cara instalansi&konfigurasi server web, cara instalasi acces point tp link di debian, cara instalasi access point tp-link di debian, cara instalasi access point tp-link di linux debian 5, cara instalasi dan konfiguransi lan, cara instalasi dan konfigurasi server, cara instalasi dan konfigurasi server web, cara instalasi dan konfigurasi web mail server, cara instalasi dan konfigurasi web server, cara instalasi dan konfigurasi web server di ubuntu, cara instalasi dan konfigurasi webmail ubuntu, cara instalasi dhcp server, cara instalasi lan card, cara instalasi samba di linux, cara instalasi ubuntu, cara install cups, cara install di ubuntu, cara install dns server ubuntu server, cara install driver access point di debian, cara install printer lewat terminal, cara install remote desktop di linux, cara install samba, cara install samba 10.04, cara install samba debian 6.pdf, cara install samba di linux, cara install samba di ubuntu 10.04, cara install samba di ubuntu 9.10, cara install samba di windows seven, cara install samba for ubuntu 10.04, cara install samba lewat internet, cara install samba offline, cara install samba ofline di ubuntu, cara install samba server, cara install samba server di ubuntu 9.10, cara install samba ubuntu , cara install samba windows seven, cara install server web dan server mail dan konfigurasinya, cara install snakebite di ubuntu, cara install software dari terminal, cara install software di ubuntu, cara install software ubuntu, cara install ssh di ubuntu, cara install ubuntu dengan windows, cara install web server, cara install web server dan konfigurasi di linux ubuntu, cara install web server di linux, cara install win xp pada linuk, cara install windows 2008 server, cara install xampp on ubuntu, cara install yahoo messenger10 di ubuntu10.10, cara installasi dan konfigurasi ubuntu server web, cara installasi samba di linux, cara intal setup ubuntu, cara intal snakebite-server-3.7.0, cara istal printer pada ubuntu, cara join domain dari linux ke windows server, cara join domain dari ubuntu, cara join domain dari ubuntu ke windows server, cara join domain dari windoes ke ubuntu server, cara join domain di centos, cara join domain pada ubuntu, cara join domain ubuntu, cara join domain ubuntu ke windows, cara join ke domain di windows server 2008, cara join linux ke domain windows, cara join network ubuntu dengan windows, cara join untuk ubuntu ke windows xp, cara join windows workgroup dari ubuntu, cara join workgroup, cara joint workgroup, cara konfigurasi access point di debian 6, cara konfigurasi dengan telnet mikrotik, cara konfigurasi di windows 7, cara konfigurasi dns server di linux ubuntu, cara konfigurasi dns server pada ubuntu 9.10, cara konfigurasi dns server ubuntu, cara konfigurasi ip address lewat windows 7, cara konfigurasi is not in the sudoers file, cara konfigurasi jaringan linux centos dengan windows offline, cara konfigurasi lan, cara konfigurasi lan card dalam windows seven, cara konfigurasi lan card di windows 7, cara konfigurasi linuk microtik, cara konfigurasi linux server, cara konfigurasi linux ubuntu, cara konfigurasi microtik melalui telnet, cara konfigurasi server, cara konfigurasi sharing folder di ubuntu 10.04, cara konfigurasi ssh ubuntu, cara konfigurasi ubuntu server, cara konfigurasi web mail pada ubuntu, cara konfigurasi web server, cara konfigurasi web server di ubuntu, cara konfigurasi webmail ubuntu, cara konfigurasi windows 7, cara konfigurasi windows7, cara langkah-langkah menginstal windows xp 2, cara linux ubuntu reinstall samba, cara login cf, cara login ke root shell lewat terminaldi ubuntu, cara login lewat root ubuntu, cara login root di winscp, cara login root ubuntu di winscp, cara login root winscp, cara login sebagai root ubuntu lewat winscp, cara login ubuntu desktop, cara login winscp as root in ubuntu, cara mambuat my netwoark places, cara map network drive, cara map network drive dari ubuntu, cara map network drive diubuntu, cara map network drive pada ubuntu 8.04 pada server 2003, cara maping jaringan alt f2 ububtu, cara masuk root di winscp, cara masuk root winscp ubuntu, cara masuk winscp, cara memakai snakebite 3.7.0, cara memasang acces point tp-link debian, cara memasang my network place, cara memblok mivo tv, cara memblokir facebook di acces pint, cara memblokir jaringan lewat accespoint, cara memblokir my network place, cara memblokir my network places, cara memblokir network places, cara memblokir pasword excel binari, cara memblokir situs client lewat server, cara memblokir situs porno di acces point, cara memblokir system computer, cara memblokir user acces point, cara memblokir website dari server ke client, cara memblokir website pada client, cara memblokir youtube dari server client, cara membuar super user di ubuntu, cara membuat acces point di windows xp, cara membuat card untuk print, cara membuat dns dan konfigurasi di ubuntu, cara membuat dns server di ubuntu, cara membuat dns server di windows server 2003, cara membuat dns server pada linux, cara membuat drive samba server di ubuntu server, cara membuat file sharing, cara membuat folder di media ubuntu, cara membuat folder di server, cara membuat folder di ubuntu, cara membuat folder pada linux ubuntu, cara membuat folder pada ubuntu, cara membuat folder shared, cara membuat folder windows permanen di ubuntu, cara membuat ip adress ubuntu, cara membuat map network drive, cara membuat mshome, cara membuat my netword places, cara membuat my network place, cara membuat my network places, cara membuat network drive, cara membuat network place, cara membuat network places, cara membuat network setup wizard windows 7, cara membuat ninja saga di facebook, cara membuat password di root, cara membuat password di windows server, cara membuat password di windows server 2003, cara membuat password di windows server2003, cara membuat password root di ubuntu, cara membuat password ubuntu, cara membuat paswoerd windows pada server 2003, cara membuat pasword di windows server 2003, cara membuat place bing, cara membuat program server client dengan linux ubuntu 9, cara membuat script dns server ubuntu, cara membuat server dengan linux, cara membuat server di linux dan client di windows, cara membuat server di ubuntu, cara membuat server join domain, cara membuat server web di ubuntu, cara membuat sharing data, cara membuat super user di ubuntu, cara membuat user baru di ubuntu lewat terminal, cara membuat user dan password di mysql, cara membuat user lewat terminal, cara membuat user printer, cara membuat user root lewat terminal di ubuntu 9.10, cara membuat web di linux ubuntu, cara membuat web lewat terminal ubuntu, cara membuat web server di ubumtu, cara membuat web server di windows xp, cara membuat webser bergerak di blog, cara membuat webserver dengan os windows xp, cara membuat website dengan ubuntu, cara membuat website di ubuntu 10.04, cara membuat wokgroup di ubuntu, cara membuat workgroup dengan windows7, cara membuat workgroup di linux ubuntu, cara membuat workgroup di ubuntu, cara membuat workgroup lewat windows 7, cara membuat wwwebserver di windows, cara membuka file sharing di ubuntu, cara membuka folder ubuntu, cara membuka network wizard, cara membuka network wizard pada windows 7, cara membuka password my networkplace, cara membuka permision di windows 7, cara membuka permision system di ubuntu, cara membuka permision windows7, cara membuka permission di linux ubuntu, cara membuka permission ubuntu, cara membuka permissions ubuntu, cara membuka program pada windows linux ubuntu, cara membuka program win xp di ubuntu 10, cara membuka protokol, cara membuka root winscp, cara membuka setup wizard windows 7, cara memcopy desktop, cara mempartisi hardisk dengan, cara memperbaiki daftar network neighborhood, cara memperbaiki windows 7 window cannot access the specified device path or file, cara memperbaiki windows cannot access, cara memperbaiki windows cannot access specified device path file, cara memperbaiki windows cannot access specified device path or file, cara memperbaiki windows cannot access the specified device path file, cara memperbaiki windows cannot access the specified device path or file windows 7, cara memperbaiki windows cannot access the specified device, path, or file, cara memperbaiki windows cannot the access the specified device, path, or file., cara mempercepat connection pada windows 7, cara mempercepat update ubuntu, cara mempercepat upgrade ubuntu, cara menangani blokir situs dengan opensuse, cara menangani windows cannot acces the spesific, cara mencuri file dari ip komputer gratis, cara mencuri file lewat ip, cara mendapatkan privilages/credentials pada ubuntu, cara meng aktifkan local host for linux, cara mengakses root pada winscp, cara mengaktif make this forder private sp3, cara mengaktifkan connection ubuntu, cara mengaktifkan file samba di ubuntu, cara mengaktifkan localhost di linux, cara mengaktifkan make folder privat, cara mengaktifkan make folder private, cara mengaktifkan make the folderr private, cara mengaktifkan make this folder orivate, cara mengaktifkan make this folder privat, cara mengaktifkan make this folder private, cara mengaktifkan printer melalui web, cara mengaktifkan ssh di ubuntu, cara mengaktifkan workgroup linux client, cara mengaktifkan xampp di windows server 2003, cara mengaktipkan directory di linux, cara mengambil file dari windows xp to ubuntu, cara mengambil file di windows dari ubuntu, cara mengambil file lewat ip addres, cara mengambil file sharing dari linux windows, cara mengambil file sharing dari windows dengan linux centos, cara mengambil hasil sharing dari windows dan ubuntu, cara mengatasi access denied pada xampp cannot connect invalid setting, cara mengatasi canon 1900 error 5201, cara mengatasi catrid no be instal pada canon ip 1900, cara mengatasi error opening installation log file. verify that the specified location exists and is writable pada pc, cara mengatasi file menjadi windows cannot acces, cara mengatasi jika file di flashdisk windows cannot access the specified device path or file, cara mengatasi permision denied di debian, cara mengatasi sharing service is not installed di ubuntu, cara mengatasi the security system could not establish a secure connection with the server cifs, cara mengatasi unable to locate package nano di debian 6, cara mengatasi window can not acces the specified device, patch or file, cara mengatasi window cannot acces specified, cara mengatasi window cannot access specify path, cara mengatasi windows cannot acces, cara mengatasi windows cannot acces the specified device,patch,file, cara mengatasi windows cannot acces the spesified device, path, cara mengatasi windows cannot access specified device path file, cara mengatasi windows cannot access the specified, cara mengatasi windows cannot access the specified device, cara mengatasi windows cannot access the specified device path or file, cara mengatasi windows cannot access the specipfed device, path, or file, cara mengatur group dan owner pada samba server debian, cara mengatur network setup wizard di windows 7, cara mengatur permission system32 folder, cara mengconnectkan server 2003 windows xp,mikrotik,ubuntu, cara mengcopy dari desktop, cara mengcopy desktop, cara mengcopy destokp, cara mengcopy file dari samba ke windows, cara mengcopy file di ubuntu, cara mengcopy file lewat terminal ubuntu, cara mengcopy lewat terminal ubuntu, cara mengcopy web ke print, cara mengeset ip lan di windows 7, cara mengganti ips di windows 7, cara menggunakan snakebite, cara menghapus mshome, cara menghapus printer di ubuntu yang, cara menghidupkan public network win 7, cara menghilangi tameng, cara menghilangi windows cannot access device, cara menghilangkan mshome.net, cara menghilangkan windows cannot access, cara menghilangkan windows cannot access the specified device path or file, cara menghilangkan workgroup, cara menghilangkan workgroup di ubuntu, cara menginstal lan card, cara menginstal lewat terminal, cara menginstal samba di ubuntu 10, cara menginstal samba di ubuntu cara offline, cara menginstal samba diubuntu dekstop, cara menginstal samba offline, cara menginstal sharing printer pada windows 7, cara menginstal software lewat terminal, cara menginstall dan konfigurasi ubuntu, cara menginstall data pada linux, cara menginstall samba offline, cara menginstall samba offline di ubuntu 10, cara mengistalasi dan menkomfigurasi net work card, cara mengkoneksikan sudo nano pada ubuntu, cara mengkonfigurasi dns untuk windows xp, cara mengkonfigurasi lan card dalam windows seven, cara mengkonfigurasi lan card dalam windows seven beserta gambarnya, cara mengkonfigurasi lan card dengan menggunakan windows seven, cara mengkonfigurasi lan card di dalam windows seven, cara mengkonfigurasi land card dalam windows 7, cara mengkonfigurasi land card dalam windows seven, cara mengkonfigurasi webmail di ubuntu, cara mengkonfigurasi windows 7, cara mengkopy file di terminal ubuntu, cara mengonci lancard, cara mengopy dekstop, cara mengupdate ubuntu, cara menjaringkan 2 komputer, cara menjaringkan komputer, cara menjaringkan linux ke windous, cara menjaringkan printer, cara menonaktifkan create folder, cara menprint data client dari server, cara mensetting samba di debian, cara mensetting server ubuntu dengan client windows 7, cara menyeting ip address pd windows 7, cara menyeting root ubuntu, cara meremot server, cara meremote file server linux, cara mindahin file lewat terminal di ubuntu, cara moblok domain di ubuntu, cara mount connect to server, cara mount windows share on group di ubuntu, cara my network places di ubuntu, cara network setup wizard di windows 7, cara network setup wizardpada windows7, cara network wizard windows 7, cara networking windows dengan ubuntu, cara ngeprin lewat clien, cara ngeprind data dari komputer, cara ngeprint dari cilent, cara ngeprint dari client, cara ngeprint dari client ke server, cara ngeprint data client di server, cara ngeprint lewat client, cara ngeprint melalui user, cara nyetting ap pada debian, cara pasang password windows server 2003, cara pasang printer shering dari windows ke ubuntu, cara password folder dengan script, cara password windows server, cara pembuatan dns server, cara pembuatan webserver dgn linux, cara perbaiki windows cannot access the specified device path or file, cara perbaiki windows cannot specified device, path or file, cara perbaiki you cannot access the specified device path or file, cara permission di ubuntu, cara permission linux, cara ping di terminal, cara ping ip di android terminal, cara ping ip lewat terminal linux, cara ping ip website di linux, cara ping lewat terminal, cara ping lewat terminal linux, cara ping lewat terminal linux ubuntu, cara ping web lewat terminal, cara point to point, cara print dari komputer client, cara print dari user ke server, cara print data dari komputer client, cara print sharing dari windows 7 ke ubuntu, cara print ubuntu ke xp, cara public network, cara reinstal versi cf, cara remot ubuntu winscp, cara remote direktori explore ubuntu desktop dari windows, cara remote jaringan mikrotik di ubuntu 10.04, cara remote linux dari window, cara remote ubuntu 10.04, cara remote ubuntu 10.04 lewat website, cara restart samba ubuntu 10.04, cara root ubuntu, cara safe ninja saga iphone, cara save cli ubuntu, cara save di nano, cara save di sudo nano, cara save di ubuntu server, cara save file, cara save file di ubuntu server, cara save nano, cara save ninja saga, cara save terminal, cara search folder pada ubuntu, cara sembunyikan ip address di ubuntu, cara server mail ubuntu, cara server web ubuntu, cara server web,server mail ubuntu cara instal dan konfigurasinya, cara serves print pd win7, cara seting acces point, cara seting dns server pada ubuntu, cara seting domain workgroup di ubuntu, cara seting network setup wizard di windows 7, cara seting printer ubuntu, cara seting samba, cara seting wizard windows 7, cara seting workgroup dilinux blak on, cara settig mshome, cara setting acces point, cara setting acces point di debian, cara setting access point, cara setting access point di debian, cara setting access point di debian server, cara setting access point di linux debian, cara setting access point lewat debian, cara setting access point tp link dengan debian, cara setting ap debian, cara setting ap pada debian, cara setting change permission pada folder komputer, cara setting client acces point, cara setting debian, cara setting dns dan web server pada ubuntu 9.10, cara setting dns di ubuntu, cara setting dns di ubuntu server, cara setting dns server di ubuntu desktop, cara setting folder sharing pada ubuntu 9.10, cara setting ip addres dari win ubuntu ke xp, cara setting ip address di ubuntu server, cara setting ip address pada ubuntu, cara setting ip address xampp di windows server 2003, cara setting ips pada windows 7, cara setting list user, cara setting login incorrect in ubuntu 9.10, cara setting mikrotik lewat telnet, cara setting mikrotik melalui telnet di debian, cara setting my network place, cara setting name server, cara setting network neighborhood, cara setting network place, cara setting network setup wizard di win 7, cara setting network setup wizard di windows 7, cara setting permission system32, cara setting printer dari ubuntu di client linux, cara setting samba server ubuntu 10.04, cara setting server di ubuntu linux, cara setting sharing dari server komputer, cara setting sharing my network places, cara setting sistem run, cara setting smb di mikrotik, cara setting ssh di ubuntu, cara setting sudo code, cara setting super user di ubuntu, cara setting ubuntu dari wincsp, cara setting ubuntu sudo nano, cara setting user client windows ke ubuntu server, cara setting user di ubuntu server, cara setting virtualbox ubuntu server bloksitus dengan client 7, cara setting web server, cara setting wemail di ubuntu, cara setting wireless acces point melalui debian 6, cara setting workgroup di ubuntu, cara setting workgroup di ubuntu lewat terminal, cara setting workgroup windows 7, cara setting xampp di windows server 2008, cara setting xampp windows server 2003, cara setup wizard di windows 7, cara shairng di ubuntu 9.10, cara share dari server linux ke client windows, cara share dari windows 7 ke linux samba, cara share di my network places, cara share di windows 7, cara share drive di linux ubuntu dengan 2 user, cara share drive windows 7, cara share driver dari win7 ke win xp, cara share file windows 7 ke centos, cara share folder dari server dengan lan, cara share folder dengan samba, cara share folder di ubuntu, cara share folder di ubuntu 10.04, cara share folder linux ubuntu limited edition, cara share folder pada samba server, cara share folder windows 7, cara share lewat my network places, cara share linux 9.10 ubuntu, cara share mount ambil data dari linux, cara share mshome ke server, cara share network place, cara share printer dari windows 7 ke ubuntu, cara share printer pada windows 7, cara share windows seven dan ubuntu, cara shared remote destop, cara sharing data, cara sharing data antara linux centos dan windows, cara sharing data dengan samba ubuntu 10.04, cara sharing data dengan windows server 2003, cara sharing data di ubuntu, cara sharing data di ubuntu 10.04, cara sharing data for xp, cara sharing data linux ke windows, cara sharing data online pada win server 2003, cara sharing data pada ubuntu, cara sharing data pada ubuntu 09.10, cara sharing data point to point, cara sharing data ubuntu dan windows, cara sharing data windows server 2003, cara sharing data windows xp, cara sharing dengan network place, cara sharing dengan ubuntu 9.10, cara sharing dengan windows 7, cara sharing file dengan centos, cara sharing file di ubuntu desktop, cara sharing file linux ke windows, cara sharing file pada linux ubuntu 9.10, cara sharing file ubuntu, cara sharing file ubuntu 10, cara sharing folder dengan linux terminal, cara sharing folder dengan ubuntu, cara sharing folder di linux, cara sharing folder di ubuntu 10.04, cara sharing folder di ubuntu 9.10, cara sharing folder pada ubuntu 9.10, cara sharing folder samba di ubuntu 10.04, cara sharing folder ubuntu 10.04, cara sharing klien windows dan linux centos, cara sharing linux ke windows, cara sharing network place, cara sharing printer dari setup wizard, cara sharing printer dari ubuntu, cara sharing printer dari windows client ubuntu, cara sharing printer dari windows ke linux, cara sharing printer dari windows xp ke linux ubuntu, cara sharing printer dari windows xp ke ubuntu, cara sharing printer dari xp ke linux, cara sharing printer dari xp ke ubuntu, cara sharing printer dengan program, cara sharing printer di ubuntu, cara sharing printer di ubuntu ke windows, cara sharing printer di windows ke ubuntu, cara sharing printer komputer via ip windows 7, cara sharing printer lewat debian, cara sharing printer melalui lan proxy .pdf, cara sharing printer pada xp dengan ubuntu, cara sharing printer ubuntu 12.04, cara sharing printer untuk tiga komputer windows 7, cara sharing printer via internet, cara sharing printer windows 7 ke ubuntu, cara sharing printer windows dan ubuntu, cara sharing printer windows key ubuntu, cara sharing printer windows xp, cara sharing printer windows xp ke ubuntu, cara sharing printer winodws 7 ke ubuntu, cara sharing ubuntu 9.10, cara shere folder di ubuntu 9.10, cara shering data pada linux ubuntu 12.04, cara shering internet mengunakan linux ubuntu 9.10, cara shutdown linux ubuntu, cara telnet mikrotik, cara ubuntu ambil printer di windows, cara ubuntu sharing data, cara untuk map driver conet di ubuntu, cara update samba, cara update samba lewat terminal, cara update status facebook lewat linuxer, cara update ubuntu lewat terminal, cara update ubuntu melalui terminal, cara update ubuntu server, cara upgred linuk ke windows, cara win server2003 xampp, cara-install-xampp-di-ubuntu, caranya save ninja saga, caraseting clien server windows, cari setingan network setup wizard di windows7, centos file sharing with windows, cf di download bagaimana caranya, cheat and totur nfs speed2, cifs vfs: close with pending writes, cifs vfs: close with pending writes windows server 2008 137 445, client dan group buat windows server 2008, client ubuntu dengan server 2003, close, comand buka file di linux ubuntu, command membuat super user di linux, como desestalar o instargrille do computador, configurasi samba ubuntu 9, connect printer dari ubuntu ke windows, connection to group on ubuntu, copi file lewat terminal ubuntu server, copy 2 file lewat terminal, copy file dari server lewat terminal ubuntu, copy file dari terminal ubuntu, copy file dari windows xp ke linux ubuntu, copy file lewat terminal, copy file lewat terminal linux, copy lewat terminal, could not get debug privilege are you admin, could not get debug privilege are you admin windows 7, could not open location 'file:///home/documents' ubuntu, could not reconnect all network drives, cra bikin client server linux, cra membuat mynetwork pleaces, cra membuat work group win 7, create a user account on the windows system for the linux system user name that you are using to connect to the windows system., create password in samba file sharing, create user client di windows 2008, create user samba, defining user for samba, desktop login ubuntu, disable guest window saat mengakses samba, dns server dan webmail debian, dns server di windows xp, dns server ubuntu desktop, dns server windows xp, doenload samba untuk ubuntu 9.10, domain, download, download cf, download samba for ubuntu 9.10, download samba linux, download samba ubuntu, download samba ubuntu 9.0, download samba ubuntu 9.10, download samba untuk ubuntu, download software blokir situs dari server, driver ubuntu lq 2170, epson l200 samba, epson lq-2170 ubuntu, error could not get debug previlage are you admin cara mengatasi, fa, file is in use ketika membuka program di windows seven, file server dengan windows xp, file server pada ubuntu, file server ubuntu 10.04, file server windows xp, file sharing dan konfigurasi samba di linux ubuntu, file sharing dengan centos, file sharing folder security di windows 7, fix could not get debug privilege are you admin, folder permission samba, folder permission windows 7 untuk, folder share limit for ubuntu desktop, folder sharing ubuntu vs xp, free download samba for ubuntu 9.10, free download samba ubuntu 9.10, fstab, ga bisa instal samba ubuntu 10.04, gimana cara download linux, gimana cara download windows linux, gimana cara nya aktifkan private folder, gimana caranya mengakses samba lewat internet, global setting of samba in ubuntu, go, google, group printer di ubuntu, hidden folder share di linux ubuntu 9.10, how to buat grup di windows server 2008, how to edit user samba, how to make password samba, how to see network file trough samba ubuntu, how to share printer on linux ubuntu 9, how to share win7 folder with samba linux, http://blog.bodi.web.id/tag/cara-copy-file-melalui-terminal, icon, Info, instal nano pada ubuntu, instal samba offline di centos, instal samba server, instal share printer di ubuntu, instal ubuntu pada windows seven, instal web server dan konfigurasinya, instal win7, instalans&konfigurasi server mail, instalasi & konfigurasi samba 9.10, instalasi dan konfigurasi access point, instalasi dan konfigurasi samba di linux 9.10, instalasi dan konfigurasi server mail, instalasi dan konfigurasi server web, instalasi dan konfigurasi server web dan server mail, instalasi dan konfigurasi server web indonesia, instalasi dan konfigurasi web mail, instalasi dan konfigurasi web mail di ubuntu, instalasi dan konfigurasi web mail pada ubuntu, instalasi dan konfigurasi web mail server, instalasi dan konfigurasi web mail ubuntu, instalasi dan konfigurasi web server, instalasi dan konfigurasi web server dan web mail ubuntu, instalasi dan konfigurasi web server mail pada ubuntu, instalasi dan konfigurasi web server pada ubuntu, instalasi dan konfigurasi webmail, instalasi konfigurasi server mail, instalasi ssh di ubuntu, instalasi ubuntu untuk webmail, instalasi web server di windows xp, instalasi window server 2003, instalasi xp pada client, install, install and configurasi mail server windows server, install and konfigurasi mail server windows server, install epson lq2170 cup, install join domain xp, install samba di ubuntu 10.04, install samba di ubuntu 10.04 lewat terminal, install samba di ubuntu lewat terminal, install samba server di ubuntu, install samba ubuntu 10.04, install samba ubuntu offline, install samba-client ubuntu 10, install snakebite-3.7.0, install ubuntu di windows server, install ubuntu pada windows 7, installing ubuntu server pada windows, ip address ninja saga, ip adress ninja saga, ip lewat terminal linux, ip ubuntu terminal .pdf, jenis file pada samba, join domain ubuntu desktop ke samba server, join domain ubuntu ke windows server 2008, joint domain windows dari ubuntu, kenapa my network place blank, konek windows7 to ubuntu pdc, koneksi access point di debian, konfigurasi /etc/samba/smb.conf pada ubuntu 7.0 pdf, konfigurasi /etc/samba/smb.conf pada ubuntu 9.0 pdf, konfigurasi access point di debian 5, konfigurasi add user dengan menggunakan parameter, konfigurasi add user dengan parameter di ubuntu, konfigurasi add user di ubuntu, konfigurasi adduser degan parameter, konfigurasi adduser dengan parameter, konfigurasi ap di debian, konfigurasi ap di ubuntu server, konfigurasi cifs, konfigurasi client, konfigurasi client server, konfigurasi dari server ke client untuk windows server 2003 dan ubuntu server, konfigurasi dns pada samba, konfigurasi dns samba, konfigurasi dns server di linux ubuntu, konfigurasi dns server ubuntu, konfigurasi etc samba, konfigurasi file server, konfigurasi file server samba di ubuntu, konfigurasi lan card dalam windows 7, konfigurasi lan card pada windows 7, konfigurasi lan card windows 7, konfigurasi lengkap ubuntu server, konfigurasi linux add user dengan menggunakan parameter, konfigurasi linux ubuntu, konfigurasi linux ubuntu versi 5, konfigurasi log in ubuntu server, konfigurasi network setup wizard pada windows 7, konfigurasi samba /etc/samba/smb.conf di linux ubuntu 7.0, konfigurasi samba di ubuntu, konfigurasi samba di ubuntu 9, konfigurasi samba ubuntu, konfigurasi samba ubuntu 10.04, konfigurasi sharing data, konfigurasi sharing data linux ke windows xp, konfigurasi sharing data pada windows xp, konfigurasi sharing folder di ubuntu 10.04, konfigurasi sharing lan di windows 7, konfigurasi ubuntu client, konfigurasi web mail, konfigurasi web server di ubuntu server, konfigurasi web server ubuntu lengkap, konfigurasi web sharing on ubuntu 7, konfigurasi webmail, konfigurasi webmail di ubuntu, konfigurasi webmail ubuntu 11, konfigurasi webserver pada dns, konfigurasi windows 7, konfigurasi windows 7 server, konfigurasi windows server, konfigurasi windows server 2003 dan ubuntu, konfigurasi windows seven, konfigurasi windows xp, konfigurasi windows7, konfigurasi xampp di windows 2003 server, kumpulan video konfigurasi server, langka seting bindg di ubuntu server, langka-langkah setting ip address ubuntu terminal, langkah instal samba, langkah instalasi dan konfigurasi windows server 2008, langkah lamgkah konfigurasi windows server, langkah langkah cara membuat web server dengan ubuntu, langkah langkah instalasi ubuntu server, langkah langkah instalasi ubuntu server 8.04 dan settingan lan nya, langkah langkah membuat user root di linux, langkah langkah menginstal window xp di client, langkah langkah sharing folder win xp, langkah langkahsharing di ubuntu, langkah membuat dns 2003, langkah membuat folder, langkah membuat folder di d, langkah membuat server di linux ubuntu 8.04 dan langkah membuat clien d windows 7, langkah setting cups (client) dan samba (client) pada ubuntu, langkah sharing data, langkah-langkah buat folder,file,copy melalui terminal linux, langkah-langkah cara ngeprint data client ke server, langkah-langkah instal linux ubuntu server, langkah-langkah instalasi ubuntu, langkah-langkah join domain ubuntu ke windows, langkah-langkah konfigur webserver, langkah-langkah konfigurasi dns, langkah-langkah konfigurasi dns samba, langkah-langkah konfigurasi windows 7, langkah-langkah membuat samba di ubuntu, langkah-langkah mengkonfigurasi windows 7, langkah-langkah pengaturan pada pc untuk 1 server 10 client, langkah-langkah setting wireless network setup wizard, langkah-langkah sharing data, langkah-langkah sharing data xp, langkah-langkah sharing file di ubuntu dan windows, langkah-langkah sharing folder pada windows seven, langkah-langkah sharing folder pada windows xp, langkah-langkah sharing folder pd windows seven, langkah-langkah windows server, liat password network places, liat password network places windows 7, limit jenis file pada samba ubuntu, limit samba users home folders, limited windows user, linux, linux join domain centos windows server, Linux nux, linux set acces file, linux ubuntu, list ip client di ubuntu, login cf, login incorrect di ubuntu 9.10, login network drive no save password, makala tentang penginstalan barbasis gui dan cli, makala tentang sering data, makalah konfigurasi lan 2010, makalah konfigurasi web server, makalah konfigurasi web server dan dns, makalah konfigurasi web server.doc, makalah konqueror, makalah lengkap tentang langkah-langkah sharing printer dari linux ke windows, makalah proxy.pdf, makalah server web ubuntu konfigurasi, makalah setting lan windows 7, makalah sharing data, makalah sharing data antara windows xp dan linux, makalah sharing data antara windows xp ke linux, makalah sharing data win linux dengan windows, makalah tentang dns server, makalah tentang proxy server linux debian, makalah tentang proxy.pdf, makalah tentang server web dan server mail ubuntu, makalah tentang setting proxy ubuntu.doc, makalah web server, makalah web server doc, map network drive dgn ubuntu ke windows, map network drive di ubuntu, map samba the network path\datafilm could not be found, mapping drive di ubuntu, mapping drive pada ubuntu, mapping folder ubuntu dan xp, mapping multi drive samba, mapping ubuntu, mapping xp, masalah shared printer di ubuntu 8.04, mebuat network drive, mebuat web dan mail server, mematikan read only pada access 2003, membaca folder windows di ubuntu, membaca folder windows di ubuntu server, membaca folder windows ubuntu, membangun file center dengan ubuntu, membangun samba server dengan ubuntu 9.10, membangun web server pada linux ubuntu.pdf, memberi permission drive di ubuntu server 8, memblok situs tv, memblokir facebook di acces point, memblokir folder dari guest account, memblokir ip address di ubuntu, memblokir situs client dari server, membuang mshome.net, membuat 2 user di ubuntu, membuat acces point linux, membuat client server dengan linux, membuat client starup manual win 7, membuat directory pada ubuntu, membuat dns diserver 2003, membuat dns server di server 2003, membuat dns server di ubuntu desktop 9.10, membuat dns server di windows server 2008, membuat file di ubuntu, membuat file server, membuat file server dengan ubuntu desktop dan mengatur policy folder, membuat file server dengan windows xp, membuat file server dengan xp, membuat file server di ubuntu, membuat file server di ubuntu 10.04, membuat file server ubuntu 10.04, membuat file server windows xp, membuat file share pada ubuntu, membuat file sharing center ubuntu, membuat file sharing di ubuntu, membuat file sharing di ubuntu dekstop 9.10, membuat file sharing di ubuntu server, membuat file shere ubuntu server, membuat folder .ssh di ubuntu, membuat folder berpassword di windows 7, membuat folder di ubuntu, membuat folder pada linux, membuat folder pada linux ubuntu, membuat folder pada ubuntu, membuat folder samba, membuat group dan sharing file group dengan ubuntu, membuat group di ubuntu, membuat group di win server 2008, membuat group di windows server 2008, membuat group pada debian samba, membuat group share di win 7, membuat group ubuntu, membuat ip hidden speedy ubuntu, membuat map drive test, membuat map network drive di ubuntu, membuat map network drive di windows seven, membuat map network drive ubuntu, membuat mapping drive pada ubuntu, membuat mapping ubuntu, membuat my network place, membuat my network places, membuat ninja saga, membuat password cf, membuat password di windows server, membuat password root pada ubuntu, membuat password root ubuntu, membuat password server 2003, membuat program untuk linux, membuat samba server pada ubutnu, membuat server di ubuntu destop:dns, membuat server dns, membuat server sharing data, membuat server web, membuat sharing data dengan windows server, membuat super user di linux, membuat super user di ubuntu, membuat super user linux, membuat superuser di terminal ubuntu 10, membuat superuser linux, membuat user admin di linux, membuat user admin via terminal ubuntu, membuat user dan group, membuat user dan group di ubuntu, membuat user di samba, membuat user di ubuntu, membuat user di ubuntu dengan terminal, membuat user group di ubuntu, membuat user root di ubuntu, membuat user root lewat terminal, membuat user samba, membuat user samba ubuntu, membuat web dari linux, membuat web lewat terminal ubuntu, membuat web server dengan wordpress di windows, membuat web server di ubuntu destop:dns, membuat web server di windows xp, membuat web server menggunakan xp, membuat web server xp, membuat webserver samba, membuat workgroup di windows 7, membuat workgroup server 2003, membuka file sharing dari windows 7 ke linux selalu cannot acces, membuka file sharing di ubuntu, membuka file sharing pada ubuntu, membuka file sharing pada widows 7, membuka folder dengan sudo, membuka folder di ubuntu, membuka folder ubuntu, membuka folder windows di ubuntu server, membuka network client di ubuntu, membuka permision folder di ubuntu, membuka permission di ubuntu, membuka permission folder windows system32 win 7, membuka permission ubuntu, membuka permission win, membuka permission windows 7, membuka root pada ubuntu, membuka root terminal di ubuntu 9.10, membuka share ubuntu server, membukawireless network setup wijart windows 7, memindahkan atau menambah user ke grup diubuntu, mempassword folder yg dishare for win7, memperbaiki windows cannot access specified path, menambahkan privileges administrator pdc ubuntu, mengaktifkan file samba, mengaktifkan id cf, mengaktifkan localhost di linux, mengaktifkan make this folder private, mengaktifkan samba, mengaktifkan samba di ubuntu, mengaktifkan shared folder melalui terminal linux, mengaktifkan untuk user limited dan admin pada windows xp, mengambil data dari linux ke 7, mengambil data lewat ip, mengambil file dari ip, mengatasi access denied policy pada samba, mengatasi could not get debug privilege! are you admin, mengatasi permission denied pada ubuntu server dengan remote winscp, mengatasi windows cannot access the specified device, mengatasi windows cannot acess the specified device, mengatur privilege samba pdc, mengcopy file menggunakan terminal, mengcopy file pada ubuntu, menghapus mshome, menghapus password samba ubuntu, menghidupkan make this folder private, menghidupkan public network, menghilangkan mshome, menghilangkan mshome.net, menginstal samba lewat terminal, menginstall samba dari downloadan, mengkoneksikan android ke samba ubuntu, mengkoneksikan debian ke ap, mengkonfigurasi server ubuntu, mengonci server, mengunci folder dari guest account, mengunci lan, mengunci lan server, mengunci server, menjaringkan komputer, menjaringkan printer, menkonfigurasi linux dengan xp, menyembunyikan ip address di ubuntu, menyeting ip, meremot linux, meremot linux ubuntu, meta, mikrotik block mivo.tv, mikrotik share printer client, mikrotik smb, mount printer di ubuntu, mount windows network drive in ubuntu, mounted multiple times, mshome.net, nano di ubuntu 10.04, net share lewat terminal linux, network plece pada linux, network setup wizard di windows 7, network setup wizard pada window 7, network setup wizard pada windows 7, network setup wizard windows 7, no ip untuk linux ubuntu untuk setting printer epson ke clien, ns, open file lewat terminal, package samba server ubuntu 9.10 free download, panduan membangun samba server pada ubuntu 10.04 pdf, parmasalahan pada konqueror, passwords need for speed 2 pc, pasword nfs komputer, pdc ubuntu administrator, pdf printer and sharing, pengaturan file sharing disamba, pengaturan printer pada windows 7, pengertian konquerror, pengertian my net work places 2007, pengertian my network place, penginstalan ubuntu windows 2003 server, penjelasan tentang shere, penyebab windows cannot access the specified device, path, or file, perintah install offline di ubuntu, perintah linux, perintah terminal proxy ubuntu, permasalahan yang terjadi pada access point, permission di ubuntu, permission folder win xp, permission folder windows xp, permission sharing folder, perusahaan canonical,, ping lewat terminal, ping lewat terminal android, print server ubuntu server, printer, printer linux, proftpd aktif ketika ubuntu hidup, program untuk blokir situs client, prosedur membuat folder instal, read only data di server ubuntu, remote desktop via web browser di ubuntu, remote ubuntu via web, remote via web ubuntu, remove samba ubuntu, restart samba ubuntu, restart teamviewer ubuntu, root, root lewat shell, root pada ubuntu, samba, samba admin all user directory, samba all usershare browsable, samba browseable, samba client ubuntu, samba dengan ubuntu, samba di linux, samba download for ubuntu, samba folder permission, samba lewat internet, samba not konek ubuntu, samba ofline ubuntu, samba server di ubuntu 9.10, samba server not shown on network list windows xp, samba server sharing printer pada debian desktop, samba ubuntu 9.10, samba ubuntu 9.10 offline, samba ubuntu 9.10 ofline, samba ubuntu ke windows 7, samba unable mount file location, saving in sudo nano, server dengan ubuntu desktop, server description windows networking options samba, server ubuntu 10 client windows, server ubuntu dengan klien windows, server untuk mengunci, service, set ip dengan terminal di ubuntu, set ip manually win7, set permission system 32 di windows7, set permissions linux ubuntu lewat shell, set user dan group diubuntu, seting ap di linux, seting lan card di windows 7, seting samba ubuntu dan windows xp, seting ubuntu ke windows, setings ap di debian, setings ap on debian, setting acces poiny debian, setting access point pada debian, setting access point tp link pada linux debian, setting access point tp-link pada debian, setting ap di debian, setting ap di linux ubuntu 10 server, setting artikel mikrotik melalui telnet(server) dengan debian, setting client server dengan win 7, setting client server di ubuntu untuk file share, setting cups (client) dan samba (client) pada ubuntu, setting debian, setting dns server windows 7, setting file sharing di ubuntu, setting file sharing pada linux, setting file sharing pada ubuntu, setting folder share name on samba, setting lan printer dalam window 7, setting lan windows vista home, setting mempercepat samba, setting multi user access windows 7 like win 2003, setting network setup wizard win 7, setting nomor ip start program network connection, setting password on samba windows file sharing, setting permission sharing folder ubuntu dengan samba, setting permission sharing ubuntu samba, setting printer client ubuntu ke ubuntu, setting samba, setting samba di linux ubuntu, setting samba di ubuntu, setting samba di ubuntu 8.04, setting samba di window, setting samba password ubuntu, setting share printer melalui lan, setting smb di mikrotik, setting tp link lewat debian, setting up samba groups for secured windows clients, setting web proxy pada windows server, setting webmail di ubuntu, setting webmail linux ubuntu, setting webproxy pada ubuntu 9.10, setting website di windows server 2003 dengan xampp, setting xampp di windows server 2003, settingan untuk membuat server dari windows, setup wizard pada windows 7, share, share data dengan samba 2 user, share data linux dengan xp, share data melalui xp dan linux, share data pada windows dan linux, share data windows xp ke debian, share file di ubuntu dengan windows, share file linux ke windows, share files and folder using ftp on windows 7, share folder di server dengan password, share folder membuat user password samba, share printer di linux, share printer di windows 7, share printer in windows 7 always login again, share web server,syntax, sharing 2 folder samba, sharing and security in windows 7, sharing dari debian server ke ubuntu, sharing data dengan 2 account, sharing data dengan ubuntu, sharing data linux dan windows, sharing data linux ke windows xp, sharing data pada linux ubuntu, sharing data windows xp ke linux, sharing file dengan centos, sharing file dengan samba di ubuntu 10.04, sharing file di linux ubuntu, sharing file di ubuntu 10, sharing file di ubuntu 10 dengan samba desktop, sharing file dilinux, sharing file samba, sharing file ubuntu server, sharing file/folder samba di ubuntu 9.10, sharing files samba ubuntu 2 ip address, sharing folder di ubuntu, sharing folder di ubuntu 8 dan windows xp, sharing folder domain to workgroup windows server 2003, sharing folder pada windows 2003 server, sharing folder pada windows 7, sharing folder pada windows xp, sharing folder windows 7 ke ubuntu, sharing folder you do not permission to access\d, sharing printer antar linux ubuntu 9, sharing printer antara windows dengan ubuntu, sharing printer dari desktop linux ke windows, sharing printer dari ubuntu client windows, sharing printer dari ubuntu ke windows xp screenshot, sharing printer dari windows ke centos 6, sharing printer dari windows xp ke ubuntu, sharing printer dari xp ke linux, sharing printer dengan mikrotik, sharing printer dengan ubuntu server, sharing printer dg mikrotik, sharing printer epson di ubuntu ke client, sharing printer lewat acces point, sharing printer linux ubuntu windows, sharing printer ubuntu dan win 7, sharing printer windows 7, sharing printer windows 7 windows update, sharing printer xp ke linux, sharing printer xp ke ubuntu, shell ke root ubuntu, shell root, shering folder pada windows xp, show share folder via linux, shring printer lewat linux, shutdown pc dengan rdesktop di linux, sistem security pada linux ubuntu, smbmount centos 6, snakebite-3.7.0, snakebite-3.7.0 download, snakebite-3.7.0 instal, snakebite-server-3.7.0, software menyeting ubuntu dari windows xp, sofware blokir situs client, solusi jika windows cannot access untuk windows 7, solusi mengatasi login incorect pada linux, solusi my network place not responding knp, solusi untuk windows cannot access the specified device, solusi window cannot access the specified device, path, or file. you caraaa mengatasinya, solusi windows cannot access the specified device path or file, start, sudo apt get ipx, sudo nano, syntax, tambah user pada samba, tambah user root ssh, teamviewer, the home folder could not be created because:the network path eas not found, the network could not be found, tips, to use a wizard to join a domain or workgroup bermasalah pada windows 8, toturial konfigurasi xampp di windows 2003 server, transfer-file-dari-ubuntu-ke-windows, trik menshearing printer melalui nomor ip pada windows 7, turoturial sharing network place, tutor setting access point pada debian, tutor setting ap di debian 6, Tutorial, tutorial cara join domain di ubuntu, tutorial cara sharing printer lewat debian, tutorial download samba dari terminal ubuntu, tutorial drive test, tutorial join domain ubuntu ke windows, tutorial konfigurasi pemblokiran situs di ubuntu .pdf, tutorial konfigurasi telnet pada debian, tutorial lengkap cara sharing folder dengan samba, tutorial lengkap samba, tutorial makalah web server, tutorial membangun samba server via linux desktop, tutorial membangun webserver pada ubuntu pdf, tutorial membuat folder di slakware, tutorial membuat group di windows 2008 server, tutorial membuat server pake windows 7, tutorial membuat user accounts dan group di ubuntu, tutorial printer sharing debian, tutorial samba lengkap, tutorial sharing data di windows 7, tutorial sharing printer dari windows xp ke linux ubuntu, tutorial sharing printer debian, tutorial smb di mikrotik, type connection pada ubuntu, ubuntu, ubuntu 10 server konfigurasi, ubuntu 9 connect to server, ubuntu cannot access windows share, ubuntu cara mengambil file dari windows, ubuntu connect to windows network drive, ubuntu connection time out samba, ubuntu directory server join domain xp, ubuntu folder permission, ubuntu it seems is mounted multiple times, ubuntu join domain windows server 2008, ubuntu logon xp, ubuntu mount samba limit interfaces, ubuntu network printing error, ubuntu printer client, ubuntu remote desktop web connection, ubuntu samba epson l200 howto, ubuntu samba folder sharing user, ubuntu samba group list user, ubuntu samba server install gui, ubuntu samba share non-home folders, ubuntu user cannot change computer setting, ubuntu10.10 server smb.conf, ubuntu: membuat folder, umount: it seems is mounted multiple times samba ubuntu deny multiple samba mounts, untuk memblokir folder, untuk mengakses file sharing di ubuntu, update offline windows 7, update ubuntu from terminal, user on samba, user root ubuntu, user samba ubuntu, video konfigurasi samba ubuntu, virtualbox host-only network, web, web mail server ubuntu 10, web mail server ubuntu 10 subcribe, web proxy mikrotik windows server, web server di ubuntu, web server ubuntu can not read from network, wh, which folder should i install software on linux, windows "map network drive" ubuntu shared folder, windows 2008 server sebagai klien, windows 7 open samba linux, windows 7 setting printer, windows cannot access di samba, windows cannot access the specified device, path or file you may not have the permissions to acces the item, windows tidak mau buka program atau install program, windows xp create user for sharing, windows2008 "cifs vfs: server not responding", windows; join domain, file sharing, ping, ip address, workgroup edit, ww, www.setingan global konfigurasi email yahoo pada joomla, xampp di windows server 2005, xampp for ubuntu 10.04 download, xp home edition connect to samba, you don have permission to access file dari windows ke ubuntu, youtube cara instal network sharing folder wizard, youtube cara share printer pada windows 7, youtube konfigurasi webmail di ubuntu, youtube sharing data windows 7 ke windows server 2003,
Setting Up Samba In Ubuntu Reviewed by Boy Setyadi on Sunday, January 31st, 2010. This Is Article About Setting Up Samba In Ubuntu

What is Samba and when do you need it?Samba is a set of tools to share files and printers. It implements the SMB network protocol, which is the heart of Windows networking. OS X also recognises Samba shares. Samba can be used to: * Act as a server for Windows (or Samba) clients: share folders [...]

Rating: 5
◀ Facebook Presiden
Yahoo Messenger 10 Final Full Offline Installer ▶



Artikel Populer

  • Mengatasi BOOTMGR is missing Press Ctrl+Alt+Del to Restart 122 view(s)
  • Mikrotik, Limit Youtube Dengan Layer 7 105 view(s)
  • Menghilangkan Pesan ” Do you want to allow the following program from an unknown publisher to make changes to your computer “ 100 view(s)
  • Blokir Situs Porno dan Banner Iklan Dengan Layer 7 Mikrotik 52 view(s)
  • Fatin Sidqia Lubis X Factor Memukau Bruno Mars 48 view(s)
  • Mikrotik, Limit Download Dengan Layer 7 30 view(s)
  • Hapus Folder Recycler dan System Volume Information 30 view(s)
  • CARA CEPAT INSTAL TELEPON / PBX/ PABX 26 view(s)
  • Centos 5.7 : Membuat User Setara Dengan Root 23 view(s)
  • Limit Youtube dan Download File di Mikrotik part 2 23 view(s)

Artikel Terbaru

  • Fatin, Aku Memilih Setia
  • Otomatis Repair dan Optimize WordPress Database
  • MySQL server has gone away
  • Mikha Angelo – Mungkin Nanti, Gala Show
  • Google Chrome Offline Installer, Official Link
  • Load Balancing 2 PPPoE Dengan PCC di Mikrotik
  • It’s My Birthday
  • Update Dynamic IP Public Di DynDNS Part 02
  • Mengubah Halaman 404 Error Not Found Agar SEO Friendly
  • Mengubah Format Tanggal Di PHP

Artikel Lain

  • Sendal keparat!!
  • Sajak-sajak Goenawan Muhammad
  • Hasil Quick Count Pilkada Jakarta Putaran 2
  • Apa Siy Enterobacter sakazakii, dan Bagaimana Mengantisipasinya
  • Gangnam Style Bius Britney Spears
  • Lagu Untuk Bang Nurdin Halid
  • FlashDisk Lock v1.6
  • Selamat Idul Fitri 1427H
  • Thor – The Movie
  • WHO: 30 Persen Kanker Akibat Kegemukan

Blogroll

  • Grez News
  • Super Gondez
  • The Net
  • Buat Website Murah!

Stats

website uptime ping.sg - the community meta blog for singapore bloggers

Tags

adsense az berita blog.bodi blogspot bulan c cinta Coretan database download Entah fa facebook foto go google imdb indonesia Info install linux logger logo mail mp3 Music ns ola ping portable root rumah search sela service start Tutorial web wh wordpress ww yang baru yang ter youtube
by bodi