Using Kubuntu.
When I connect my Camera to the system through an usb cable, a prompt will be shown at the right bottom corner:
After clicking "Open with File Manager":
Dolphin opens with the path to be camera:/
.
What's the meaning of camera:/
here and how does Kubuntu handle my camera here?
The 'camera:/' is a KDE kio/kio-slave/protocol. More:
KIO
http://en.wikipedia.org/wiki/KIO
Camera
http://api.kde.org/4.x-api/kdelibs-apidocs/solid/html/classSolid_1_1Camera.html#_details
http://www.gphoto.org/doc/manual/using-kde.html
The linux kernel provides drivers that you can use in order to read/write/use various devices.
Unlike Windows that creates a drive for hard drivers/cdroms/flash drives etc, linux creates a file with a set of instructions that allow you to access that device. That file is located in /dev/ and the process by witch you access it is called mounting
So you plug in the camera, the system detects it and it creates that file in /dev/ that you need to mount in order to access. Ubuntu usually auto-mounts the devices for you, and that is probably what you are experiencing there. The usual mount point for devices is in /media/ or /mnt/ depending on the linux distribution (for ubuntu it's /media/).
You can manually mount and unmount devices using the terminal (ctrl+alt+t) and executing the mount and umount commands which you can use the --help attributes on, read their manual pages using man mount and man umount or google about them.
You should read a little about the linux file system in order to understand how it does all this and how handy it becomes when you need to expand a folder size or create logical volumes.