I'll try that and tell you results later.


TRZALICA wrote:I can't get sound and when I reboot machine after installing graphic card driver, I get this error (when logged in): KWin closed unexpectedly (executable: kwin PID: 3022 signal: Illegal instruuction (4) ) ...
sudo apt-get purge pulseaudio*


TRZALICA wrote:Problem with sound still remains... I can send you screenshots on mail if you want just send pm with your mail. (I don't have the same problem as guys on the forum you gave in link)
TRZALICA wrote:How can I remove the old user profile (one that I had problem with loging in?
sudo deluser --remove-home username_to_remove





dmesg > dmesg_output






zerozero wrote::D Schoelje just ignore trolls and focus in the wonderful work you're doing



ronnietucker wrote:I've installed Mint DE KDE UP5 on my desktop machine (replacing my now bloated Kubuntu 12.04>12.10) but I'm getting unusually high CPU readings from Xorg.
It normally sits around 1 or 2%, but when I do anything it will jump to anything from 10-25% (for a few seconds) then drop again. It's not a major problem, but it does it when I press the K button, or even create a new tab in Chrome.
Not sure if this is the same problem and possible cure?
http://forums.debian.net/viewtopic.php?f=6&t=73633
Oh, and one more thing:
Sharing a folder. When I right click, click the SHARE tab and tick the box to share a folder everything seems fine. But close that window, reopen it and the folder network icon is gone. Go into the properties and SHARE tab again and the box I ticked is now unticked. I've had to botch this by opening the Dolphin window as root and it will share that way.
groups user_name

Schoelje wrote:ronnietucker wrote:I've installed Mint DE KDE UP5 on my desktop machine (replacing my now bloated Kubuntu 12.04>12.10) but I'm getting unusually high CPU readings from Xorg.
It normally sits around 1 or 2%, but when I do anything it will jump to anything from 10-25% (for a few seconds) then drop again. It's not a major problem, but it does it when I press the K button, or even create a new tab in Chrome.
Not sure if this is the same problem and possible cure?
http://forums.debian.net/viewtopic.php?f=6&t=73633
Oh, and one more thing:
Sharing a folder. When I right click, click the SHARE tab and tick the box to share a folder everything seems fine. But close that window, reopen it and the folder network icon is gone. Go into the properties and SHARE tab again and the box I ticked is now unticked. I've had to botch this by opening the Dolphin window as root and it will share that way.
Sorry that I'm so late. I'm working on a revised DDM at the moment and it's taking every free minute I have.
I've been looking at the CPU usage issue, but never came any further than you already did.
Did you also have this issue when running live and were you able to solve it?
I didn't get the sharing problem as a normal user.
Can you list the groups of your user?
- Code: Select all
groups user_name
ronnie@kde-mint-desktop ~ $ groups ronnie
ronnie : ronnie adm dialout cdrom floppy sudo audio dip video plugdev lpadmin sambashare
sudo smbpasswd -a ronniesudo cp /etc/samba/smb.conf /etc/samba/smb.conf.master
sudo testparm /etc/samba/smb.conf.master >/etc/samba/smb.conf
sudo testparm /etc/samba/smb.conf
sudo sed -i -e 's/\[homes]/\tusershare owner only = No\n\tusershare allow guests = Yes\n\tsecurity = user\n\tmap to guest = bad user\n&/' /etc/samba/smb.conf
sudo testparm /etc/samba/smb.confsudo nano /etc/samba/smb.confsudo /etc/init.d/samba restart

Schoelje wrote:I noticed a CPU usage jump of Xorg as well when I open a new tab in chromium, but it hardly lasts a second.
Maybe it's supposed to do that and it depends on the system's hardware configuration (type cpu, motherboard, just guessing).
The groups for your user look correct to me.
You could try this:
Create a samba password
- Code: Select all
sudo smbpasswd -a ronnie
Backup smb.conf and add some configure items to it (you need to hit ENTER when the "testparm" lines are being executed):
- Code: Select all
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.master
sudo testparm /etc/samba/smb.conf.master >/etc/samba/smb.conf
sudo testparm /etc/samba/smb.conf
sudo sed -i -e 's/\[homes]/\tusershare owner only = No\n\tusershare allow guests = Yes\n\tsecurity = user\n\tmap to guest = bad user\n&/' /etc/samba/smb.conf
sudo testparm /etc/samba/smb.conf
Now check if everything is correct
- Code: Select all
sudo nano /etc/samba/smb.conf
And restart samba (or reboot)
- Code: Select all
sudo /etc/init.d/samba restart
Try sharing a folder.
bash: /etc/samba/smb.conf: Permission denied
ronnietucker wrote:Weird. The first line (the copy command) worked fine. Second line (first testparm) gave the error:
- Code: Select all
bash: /etc/samba/smb.conf: Permission denied
... and I was using sudo. Copy/pasted your commands right into Konsole.


Schoelje wrote:ronnietucker wrote:Weird. The first line (the copy command) worked fine. Second line (first testparm) gave the error:
- Code: Select all
bash: /etc/samba/smb.conf: Permission denied
... and I was using sudo. Copy/pasted your commands right into Konsole.
Ok, just forget sudo, but login as su and start from the first testparm.

sudo nano /etc/samba/smb.confusershare allow guests = Yes
usershare max shares = 100
usershare owner only = Falsesudo mkdir /var/lib/samba/usershares
sudo chgrp users /var/lib/samba/usershares/
sudo chmod 1775 /var/lib/samba/usershares/sudo /etc/init.d/samba restart

Schoelje wrote:Another try...
First, check if you are in the users group!
If not, add yourself to the users group, if you are, try this:
- Code: Select all
sudo nano /etc/samba/smb.conf
Make sure the following is in the [global] section:
- Code: Select all
usershare allow guests = Yes
usershare max shares = 100
usershare owner only = False
Create usershare directory if it not already exists with the right permissions (owner=root / group=users):
- Code: Select all
sudo mkdir /var/lib/samba/usershares
sudo chgrp users /var/lib/samba/usershares/
sudo chmod 1775 /var/lib/samba/usershares/
Restart samba:
- Code: Select all
sudo /etc/init.d/samba restart
and try sharing a directory again.
[global]
server string = %h server
map to guest = Bad User
obey pam restrictions = Yes
pam password change = Yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *passwor$
unix password sync = Yes
syslog = 0
log file = /var/log/samba/log.%m
max log size = 1000
dns proxy = No
usershare allow guests = Yes
panic action = /usr/share/samba/panic-action %d
idmap config * : backend = tdb
usershare owner only = No
usershare allow guests = Yes
security = user
map to guest = bad user


Users browsing this forum: No registered users and 9 guests