Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,220
» Latest member: Bobbyhiple
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 286 online users.
» 0 Member(s) | 284 Guest(s)
Applebot, Bing

Latest Threads
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 556
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 89,683
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 42,879
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,953
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,452
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 41,589
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 118,847
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 56,614
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 46,523
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 42,222

 
  Windows 2003 Domain
Posted by: GBKevin - 2005-12-23, 01:38 PM - Forum: Samba and NFS - Replies (1)


This is how I was able to configure Suse 10.0 to authenticate on a Windows 2003 Active Directory Server. I do not know if it will work on previous versions of Windows or with previous versions of Suse Linux.

 

Notes:

 

1.Any text that reads domain.internal (lower case) you will replace with your domain.

2.Any text that reads DOMAIN.INTERNAL (upper case) you will replace with your domain in upper case.

3.Any text that reads DOMAIN (upper case) you will replace with your domain (no .internal)

4.The NetBios name is the name of your client (workstation/computer)

 

 

This process will require the krb5-client (I installed all of it), Samba, and Samba-Winbind.

 

Steps

 

Step 1: Install the Required Packages – This can be done through Yast

 

Step 2: Edit the /etc/krb5.conf File

 

[logging]

default = FILE10000:/var/log/krb5lib.log

[libdefaults]

ticket_lifetime = 24000

default_realm = DOMAIN.INTERNAL

default_tkt_enctypes = des3-hmac-sha1 des-cbc-crc des-cbc-md5 aes256-cts arcfour-hmac-md5

default_tgs_enctypes = des3-hmac-sha1 des-cbc-crc des-cbc-md5 aes256-cts arcfour-hmac-md5

[realms]

DOMAIN.INTERNAL = {

kdc = domainserver.domain.internal

admin_server = domainserver.domain.internal

default_domain = DOMAIN.INTERNAL

}

[domain_realm]

.domain.internal = DOMAIN.INTERNAL

domain.internal = DOMAIN.INTERNAL

 

Step 3: Edit /etc/samba/smb.conf

 

[global]

security = ads

netbios name = NetBios Name

realm = DOMAIN.INTERNAL

password server = domainserver.domain.internal

workgroup = DOMAIN

idmap uid = 1000-29999

idmap gid = 1000-29999

winbind separator = +

winbind enum users = yes

winbind enum groups = yes

winbind use default domain = yes

template homedir = /home/%D/%U

template shell = /bin/bash

client use spnego = yes

domain master = no

server string =

 

Step 4: Test the configuration with the testparm command – You should be able to see what you entered in the samba.conf file.

 

Step 5: Edit /etc/nsswitch.conf to look like the example below

 

passwd: compat winbind

group: compat winbind

shadow: compat

hosts: files dns wins

networks: files

protocols: db files

services: db files

ethers: db files

rpc: db files

netgroup: nis

 

Step 6: Modify the PAM settings

 

These files are all located in the /etc/pam.d folder

 

File: common-account (It should contain only the following lines)

 

account sufficient pam_winbind.so

account required pam_unix.so

 

 

File: common-auth (It should contain only the following lines)

 

auth sufficient pam_winbind.so

auth required pam_unix.so nullok_secure use_first_pass

 

File: common-password file

 

password required pam_unix.so nullok obscure min=4 max=50 md5

 

File: common-session

 

session required pam_mkhomedir.so umask=0022 skel=/etc/skel

 

Step 7: Make a directory to hold domain user home directories

 

Note: Use Konsole for this

Note: Use the value you put in the WORKGROUP tag smb.conf file

 

mkdir /home/DOMAIN

 

Step 8: Initialize Kerberos

 

Note: Use Konsole for this

 

kinit domain_admin_account@DOMAIN.INTERNAL

 

Step 9: Check to be sure you got a ticket from the domain controller

 

Note: Use Konsole for this

 

klist

 

Step 10: Join the Domain

 

Note: Use Konsole for this

 

net ads join -U domainadminuser@DOMAIN.INTERNAL

 

Step 11: Restart Samba-related Services

 

Note: The order is important

Note: Use Konsole for this

 

/etc/init.d/smb stop

/etc/init.d/winbind stop

/etc/init.d/smb start

/etc/init.d/winbind start

 

Step 12: Attempt to switch user and logon as a domain member. If you can logon than you are successful.

 

Step 13: Configure SUDO

 

Add the “Domain Admins” group from windows to the /etc/sudoers file

 

%Domain Admins ALL=(ALL) ALL

 

Example:

# sudoers file

# Host alias specification

# User alias specification

# Cmnd alias specification

# Defaults specification

Defaults targetpw # ask for the password of the target user i.e. root

%users ALL=(ALL) ALL # WARNING! Only use this together with 'Defaults targetpw'!

# Runas alias specification

# User privilege specification

root ALL=(ALL) ALL

 

# Uncomment to allow people in group wheel to run all commands

%Domain Admins ALL=(ALL) ALL

 

# Same thing without a password

# %wheel ALL=(ALL) NOPASSWD: ALL

# Samples

# %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom

# %users localhost=/sbin/shutdown -h now

Step 14: See if Konsole will list user names and group names from Windows:

 

wbinfo -u

wbinfo -g

 

Step 15: Make sure the permission on the DOMAIN folder under Homes is set to the correct permissions so that the new users can create their folder on login.

Print this item

  we got a new camera !
Posted by: anyweb - 2005-12-22, 10:10 PM - Forum: General Chat - No Replies


it's a Canon Eos 350d 8mp

 

check out the quality :)

 

[/url][url=http://www.dpreview.com/reviews/canoneos350d/]http://www.dpreview.com/reviews/canoneos350d/

 

nice !

 

and

 

a close up..

Print this item

  SUSE 10 Easter Egg?
Posted by: hybrid - 2005-12-20, 09:19 PM - Forum: General Chat - Replies (2)


I just booted a very old system with a SUSE 10 floppy disk and instead of the standard theme for the installation boot menu thing, there was a rather festive Lemmings-like level in the background with a snowy winter scene (but, with Tuxes rather than Lemmings). Reminds me of the Linux game Pingus... :)

 

I would have posted a screenshot, but I had to reboot the machine and on reboot it was back to the default SUSE screen again. Easter egg? Don't know why I couldn't get it to work the second time, though. :)

Print this item

  checkout the screen resolution :)
Posted by: anyweb - 2005-12-19, 10:05 AM - Forum: Linux - Replies (1)


cool or what (it's a notebook if you are wondering)

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1134986706.png" data-fileid="430">[img]<fileStore.core_Attachment>/post-1-1134986706.png[/img]</a>



Attached Files
.png   Screenshot_1.png (Size: 475.42 KB / Downloads: 0)
Print this item

  Choppy sound/disappearing mouse
Posted by: hybrid - 2005-12-18, 09:15 AM - Forum: How Do I? - Replies (9)


I have just reinstalled Windows XP Home SP2 and have got this problem for the second time. This problem has just reinforced my view that Linux is so much better than Windows ;). If any of you know anything that might be able to help me, I would be very grateful.

 

Sounds on Windows are now extremely choppy, especially this is noticable at startup and shutdown with the Windows XP sounds. Also, after logging on and using a program or two, the mouse pointer freezes and stays in one position. It still works, but you can't see it, so you have to guess by rollover effects where the pointer is. There is a workaround to use the Show location of pointer when I press Ctrl in the Mouse Properties, and this is how I'm actually forced to use Windows.

 

As far as I can tell, this problem started just after installing Visual Basic 2005 Express Edition (with MSDN and MS SQL Server). Since this brings along .NET Framework 2.0 and MSXML 6.0, however, I'm not sure what is doing this. I've tried removing all the components of VB2005, to no avail. I've also already just rebuilt Windows from having this problem, so I'm not very happy with Microsoft at the moment. [img]<___base_url___>/uploads/emoticons/default_dry.png[/img]

 

From Googling my problem, the only related thing I've found has been:

 

[/url][url=http://www.experts-exchange.com/Security/Q_21641382.html]http://www.experts-exchange.com/Security/Q_21641382.html

 

But I don't have a subscription, so I can't see the answer. :( I don't think it's spyware, though, because this is a completely new installation of Windows.

 

Any help would be greatly appreciated. :)

Print this item

  how to see the TEMP of your CPU in FCR4 ?
Posted by: anyweb - 2005-12-16, 11:46 AM - Forum: Fedora Core Release 4 - No Replies


as root do this

 



Code:
[root@localhost ~]# cat /proc/acpi/thermal_zone/THM/temperature
temperature:             29 C




 

cool huh ?

 

cheers

anyweb

Print this item

  analysis of a spammer
Posted by: anyweb - 2005-12-16, 09:01 AM - Forum: Site News - Replies (28)


hi guys

 

it seems that spammers try every method in the book using methods like email, phising, posting on forums (with links to where they want you to click) amongst their methods,

 

while browsing through the statistics of this website (https://www.linux-noob.com) i came across some unfamiliar 'referral links' which drew my interest and later, disgust.

 

The spammers have obviously got some 'spam bots' which crawl websites for one purpose, to falsely leave behind their 'links' in the statistics page of a website.

 

To try and further understand these low-lifes I did some analysis:-

 

look at the statistics posted here

 

[/url]http://linux-noob.com/usage/usage_200512.html#TOPREFS

 

Quote:# Hits Referrer1 73339 24.26% - (Direct Request)

2 1563 0.52% http://www.google.com/search

3 1462 0.48% http://charlestyrrell-ins.com/

4 1462 0.48% http://wgostonemantel.com/

5 1340 0.44% http://downjigger.com/

6 1340 0.44% http://hedcore.com/

7 1340 0.44% http://hellwithgoogle.com/

8 1340 0.44% http://isdwebstore.com/

9 1340 0.44% http://redline-entertainement.com/

10 1340 0.44% http://skateinstrutor.com/

11 1340 0.44% http://slewfootrecrods.com/

12 1340 0.44% http://syperopts.com/

13 615 0.20% http://images.google.com/imgres

14 408 0.13% http://desktoplinux.com/articles/AT9133949670.html

15 376 0.12% http://www.dvd4arab.com/forums/showthread.php
 

ok, the first link is listed as a 'direct request' and what that means is any internal link on linux-noob.com that links back to a page/site/forum whatever on linux-noob.com is listed as a direct request, same goes for anyone coming here via a bookmark to linux-noob.com or RSS feed.

 

The second link in the list above is our friend google, nothing strange there.

 

However, if we look at the 3rd to the 12th links listed, things start to become strange,

 

obviously to find out who these 'new' referrals were I clicked on the link only to be surprised that I landed on a 'so called search page'

 

take a look at the first link listed

 

3 1462 0.48% http://charlestyrrell-ins.com/

 

clicking on that will re-direct you to the following website

 

http://www.searchmeup.com/search.php?aid...is_is_SPAM

 

which is 'marketing' (spamming to you and me) a drug called "lousy spam".

 

"lousy spam" itself (according to google) is a diet pill, but who cares. I don't. I'm not interested. What annoys me is that the 'charlestyrell' link redirects me to a 'search site'. That is the SPAM in action.

 

Let's take the second site listed:-

 

4 1462 0.48% http://wgostonemantel.com/

 

once again, it redirects to the above page

 

http://www.searchmeup.com/search.php?aid...is_is_SPAM

 

and you can probably guess that the 'aid=36585' part of the link is the method that the spammer has of knowing how successful his spam is.

 

Let's continue with the third link:-

 

5 1340 0.44% http://downjigger.com/

 

redirects to http://www.searchmeup.com/search.php?aid=3...hoes&said=550_1

 

which is the same 'searchmeup.com' website and the same 'aid=36585' but now with a 'new' PHONEY search term.

 

ok,, you get the idea now, so who is running this spamming operation ?

 

let's do some whois ...

 

Quote:charlestyrrell-ins.com (Reverse lookup failed) 

BW whois 2.9 by Bill Weinman (http://whois.bw.org/)

Copyright 1999-2001 William E. Weinman

Request: charlestyrrell-ins.com

connecting to whois.internic.net [198.41.0.6:43]...

connecting to whois.criticalinternet.com [69.50.183.29:43] ...

Registration Service Provided By: ESTDOMAINS

Contact: +372.55647646

Website: http://www.estdomains.com

 

Domain Name: CHARLESTYRRELL-INS.COM

 

Registrant:

Miamy diamond, inc

Andrew Scott (andrewscott600@yahoo.com)

2301 E St Nw

Washington

,20037

US

Tel. +202.4630871

 

Creation Date: 10-Dec-2005

Expiration Date: 10-Dec-2006

 

Domain servers in listed order:

ns1.charlestyrrell-ins.com

ns2.charlestyrrell-ins.com
 

and the next 'link'

 

Quote:wgostonemantel.com (Reverse lookup failed) 

BW whois 2.9 by Bill Weinman (http://whois.bw.org/)

Copyright 1999-2001 William E. Weinman

Request: wgostonemantel.com

connecting to whois.internic.net [198.41.0.6:43]...

connecting to whois.criticalinternet.com [69.50.183.29:43] ...

Registration Service Provided By: ESTDOMAINS

Contact: +372.55647646

Website: http://www.estdomains.com

 

Domain Name: WGOSTONEMANTEL.COM

 

Registrant:

-

Klaus Muller (klausmuller007@yahoo.com)

Sandershauser Strasse 101

Kassel

,34123

DE

Tel. +49.56150003

 

Creation Date: 09-Dec-2005

Expiration Date: 09-Dec-2006

 

Domain servers in listed order:

ns1.wgostonemantel.com

ns2.wgostonemantel.com
 

and the third link

 

Quote:downjigger.com (Reverse lookup failed) 

BW whois 2.9 by Bill Weinman (http://whois.bw.org/)

Copyright 1999-2001 William E. Weinman

Request: downjigger.com

connecting to whois.internic.net [198.41.0.6:43]...

connecting to whois.criticalinternet.com [69.50.183.29:43] ...

Registration Service Provided By: ESTDOMAINS

Contact: +372.55647646

Website: http://www.estdomains.com

 

Domain Name: DOWNJIGGER.COM

 

Registrant:

-

Klaus Muller (klausmuller007@yahoo.com)

Sandershauser Strasse 101

Kassel

,34123

DE

Tel. +49.56150003

 

Creation Date: 13-Dec-2005

Expiration Date: 13-Dec-2006

 

Domain servers in listed order:

ns1.downjigger.com

ns2.downjigger.com
 

so are the people mentioned above real or fake ? any takers ?

 

the 'searchmeup.com' website has an 'report abuse' link which redirects to

 

[url=https://www.umaxlogin.com/user_page.php?page=FAQ]https://www.umaxlogin.com/user_page.php?page=FAQ

 

which is a 'pay per click' ad revenue, so we can see that the many links 'left behind' on linux-noob.com's STATS page are designed to get users to 'click' and end up on 'searchmeup'.

 

some is trying to profit here, but who ?

 

I tried to 'report abuse' to the domain name creation site listed above but was left feeling less than impressed (see screenshot)

 

 

 

cmon guys, feel like helping me out here ? who is doing this and how can we stop them ?

 

cheers

 

anyweb

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1134724123.png" data-fileid="429">[img]<fileStore.core_Attachment>/post-1-1134724123.png[/img]</a>



Attached Files
.png   Screenshot.png (Size: 230.44 KB / Downloads: 255)
Print this item

  Ubuntu/Kubuntu and Video Files
Posted by: kingttx - 2005-12-15, 10:08 PM - Forum: Ubuntu - No Replies


I recently started messing with a few other distributions and was frustrated with (K)Ubuntu's lack of mplayer and codecs. Although it is possible to find a good repository for apt-get to pull in those files, I found a much easier way to handle pulling in all of these files, including Audacity (a good sound editor), and the mplayer plugin for Firefox.

 

Automatix is a script for (K)Ubuntu that pulls in a ton of different files according to what you opt for. For example, from the above link:

 

Quote:Capabilities:1) Installs multimedia codecs

2) Installs all Firefox plugins (java, flash, etc) (except Adobe reader and mplayer)

3) Installs RAR, ACE and UNRAR archive support

4) Installs skype

5) Installs Acrobat reader 7 and firefox plugin for the same.

6) Installs Gnomebaker (CD/DVD burning s/w for GNOME)

...
 

Please forgive me for linking to another board, but this was invaluable in my opinion, and will benefit new (K)Ubuntu users. Please note that Kubuntu users have three additional packages to install before installing Automatix.

 

Enjoy!

Tom

Print this item

  unmount a usb flash drive
Posted by: jazzman - 2005-12-14, 11:07 AM - Forum: SUSE - Replies (7)

I have just installed linux for the 1st time (suse 10) and liking it a lot. I have got it connected to the internet using a usb wireless adapter (something that has put me off trying linux for a long time was the lack of wirless support). My only real problem so far is that my usb flash drive is recognised and mounted automatically when i plug it in and an icon appears on the desktop. The drive works fine but when i have finished using it and and right click to choose the 'unmount' option, i get a message telling me somthing about not having permission as i am not the owner and somthing about "fstab". I am having to wait until the pc shuts down before removing the device as i don't want to corrupt the memory. Is this a bug in suse 10 or am i missing something?

Print this item

  Hello...again!
Posted by: beej - 2005-12-12, 02:12 AM - Forum: Hello - Replies (3)


Yes, yes. I'm back, with a new PC running Ubuntu. <3!

 

I plan on posting bunches and being on the IRC channel 24/7!

 

SO, HELLO AGAIN, EVERYONE!

Print this item