Answer the question
In order to leave comments, you need to log in
Is it possible to configure a Samba share via the GUI under KDE and how does kdenetwork-filesharing work under Jessie?
For myself, I would just write everything in smb.conf by hand, but my operator can only work with a mouse and my task is to give him the opportunity to configure the balls on his own. In theory, there exists for this kdenetwork-filesharing
, it is present in Jessie, it is set normally, in Dolphin the "Make General" tab appears in the directory properties (yes, the Russian locale), but all the settings made there are not saved anywhere, nothing is written in smb.conf, after reloading, all fields are clear again, and, of course, no balls (except for $IPC and $print) are open anywhere.
All manuals kdenetwork-filesharing
are about Kubuntu, not a word about pure Debian.
I did the simplest things, like adding $USER to the sambashare group and adding wins to nsswitch.conf and smb.conf, of course.
Questions:
kdenetwork-filesharing
?Answer the question
In order to leave comments, you need to log in
1. kde is a crooked craft, like all software with the letters k and g at the beginning of the name
2. apt-get remove --purge kde* kdenetwork-filesharing
3. there is a good webui for samba, I don’t remember the name exactly (
Helped:
export USERSHARES_DIR="/var/lib/samba/usershare"
export USERSHARES_GROUP="sambashare"
sudo mkdir -p ${USERSHARES_DIR}
sudo groupadd ${USERSHARES_GROUP}
sudo chown root:${USERSHARES_GROUP} ${USERSHARES_DIR}
sudo chmod 1770 ${USERSHARES_DIR}
In /etc/samba/smb.conf underneath [global] enter this:
usershare path = /var/lib/samba/usershare
usershare max shares = 100
usershare allow guests = yes
usershare owner only = False
Add yourself to the group with the following or use Kuser:
usermod -a -G ${USERSHARES_GROUP} your_username
From here .
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question