Search found 137 matches

by mister_v
Mon Nov 01, 2010 9:28 pm
Forum: Linux
Topic: Solved: How do I add a user in samba
Replies: 1
Views: 7090

Solved: How do I add a user in samba

Hello,

How do I add a user in samba?
I created a normal user with password

Code: Select all

useradd joe
passwd joe
But it doesn't work.
I can't login using the username and password.
by mister_v
Tue Aug 03, 2010 10:00 pm
Forum: Linux
Topic: Solved: Symbolic links in Samba
Replies: 2
Views: 8560

Solved: Symbolic links in Samba

Hi, I have setup my samba share with symbolic links to other dirs. But since my latest update id doesn't work anymore. I see the symbolic links, but can't open them. Here is the code for my share in smb.conf [share] comment = Share path = /var/share valid users = pguest public = no writable = yes pr...
by mister_v
Wed Jul 07, 2010 8:56 pm
Forum: Linux
Topic: forward ports in iptables
Replies: 1
Views: 6957

forward ports in iptables

Hi,

Is there an easy way to create a forward port to another machine and the delete it after a few minutes?

I don't want to leave it open.

Thanks for the help
by mister_v
Sun May 23, 2010 10:31 pm
Forum: Linux
Topic: Solved: how to get a list of forward rules in iptables
Replies: 3
Views: 9522

Re: Solved: how to get a list of forward rules in iptables

I got even a better way:

Code: Select all

iptables -t nat -L PREROUTING
This was what I was looking for, not the forward chain but the PREROUTING chain.
by mister_v
Sat May 22, 2010 9:18 pm
Forum: Linux
Topic: Solved: how to get a list of forward rules in iptables
Replies: 3
Views: 9522

Re: how to get a list of forward rules in iptables

Thanks

Code: Select all

iptables-save > iptables_file.txt
gives a much clearer view.
by mister_v
Thu May 20, 2010 10:30 pm
Forum: Linux
Topic: Solved: how to get a list of forward rules in iptables
Replies: 3
Views: 9522

Solved: how to get a list of forward rules in iptables

Hello

I would like a list of all the forward rules in iptables.
I tried

Code: Select all

iptables --list
But it doesn't give me a full and clear list.
by mister_v
Mon Apr 19, 2010 12:04 pm
Forum: General
Topic: Why can't I copy files larger then 4GB
Replies: 1
Views: 19722

Why can't I copy files larger then 4GB

I try to copy a file of 7GB to my external usb drive, but it fails every time.

After some test, I noticed that files below 4GB work without a problem.
But files larger then 4Gb fail.
by mister_v
Tue Jan 19, 2010 10:46 pm
Forum: Linux
Topic: Solved: run script on startup
Replies: 4
Views: 11772

Re: run script on startup

Thanks,

Code: Select all

/etc/rc.local
works great.
by mister_v
Sun Jan 17, 2010 3:55 pm
Forum: Linux
Topic: Solved: run script on startup
Replies: 4
Views: 11772

Re: run script on startup

Thanks,

But i don't have the file:

Code: Select all

/etc/conf.d/local.start
I use Kubuntu 9.10.

Is there another method?

I thought of creating a service in

Code: Select all

/etc/init.d
by mister_v
Sat Jan 16, 2010 6:05 pm
Forum: Linux
Topic: Solved: run script on startup
Replies: 4
Views: 11772

Solved: run script on startup

Hi,

Ho do I run a script when my linux PC starts up.

I want to run a script that check some url's when my pc boots.
But it has to be done after the network is setup.

Thanks