Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,224
» Latest member: v30577
» Forum threads: 4,029
» Forum posts: 16,404
Full Statistics
|
Online Users |
There are currently 405 online users. » 0 Member(s) | 402 Guest(s) Bing, Google, Yandex
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 1,986
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 95,494
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 47,541
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 3,338
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 6,893
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 43,237
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 124,033
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 61,114
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 50,834
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 43,555
|
|
|
Winbind = using Windows ADS Accounts to login |
Posted by: Strabo - 2004-08-13, 01:25 PM - Forum: Samba and NFS
- Replies (2)
|
 |
This post is to show you how to use Windows ADS accounts to login to your Linux server instead of manually making seperate Linux local accounts. The reason I did this is because some of our clients wanted to use sftp and the easiest way to manage all the different accounts for each client is creating OU's in Active Directory Services in Windows. This document will work with Windows 2000 or 2003 ADS.
Winbind is integrated with Samba and will require you to configure Samba and PAM for this operation to work succesfully. Lets get started :)
Step 1:
Lets backup your smb.conf file incase you make a mistake you can start over
Code: cp /etc/samba/smb.conf /etc/samba/smb.bak
Step 2:
Now its time to edit your smb.conf file
Code: vi /etc/samba/smb.conf
Step 3:
Now enter in the following below. You can delete the contents of your orginal smb.conf file as this will replace everything in there.
You will have to change the following lines to your configuration:
workgroup =
|
|
|
too slow when navigating on the internet |
Posted by: rdogg - 2004-08-13, 04:06 AM - Forum: Network Problems
- Replies (1)
|
 |
:) hey im really noob on linux haha hope that whit some time stop been it lol , hey my question is im using mandrake 10 and i use mozilla for the internet navigation and my question is , Is it normal that when i try to access some site is really slow that what is it on my xp os , is it normal or maybe i need to configurate something , i have a dsl roueter and the router ip is 192.168.1.1 and the ip on linux is 192.168.1.4 , and when i acces my internet connections on the system -> configure my pc , my network card say dns 192.168.1.1 but also say not connected , :S i think thats weird tho haha , i hope some answers and really sorry about my english it is my 2nd language. tx and keep helping linux-noob !!!
|
|
|
uh oh dads back |
Posted by: tek-69 - 2004-08-11, 01:41 PM - Forum: General Chat
- Replies (1)
|
 |
Shit dads back from vacation, quick venom cover that beer stain on the couch with a cover, Grep clean up that spilled bong .... OHH uh hi anyweb ummm no we didnt throw any crazy parties while you were gone, umm yeah that priceless vase was always brokenm i swear .
welcome back dood :)
|
|
|
ipv6 problems... |
Posted by: anyweb - 2004-08-11, 06:37 AM - Forum: DNS and DHCP
- Replies (2)
|
 |
ok..
z0ny helped me setup ipv6 but now the dumb thing is not working and i havnt changed anything
my ipv6 details are here (from my sixxs.sh script)
Code: #!/bin/sh
### CONFIGURATION: SIXXS #####################
# Inteface to bind the tunnel to
IF="sit1"
# IPv4 address of the tunnelbroker
ISP4="213.204.193.2"
# IPv6 address of the tunnelbroker
ISP6="2001:960:2:29a::1"
# Local IPv4 address to bind the tunnel to
LOC4="81.225.169.198"
# Local IPv6 address
LOC6="2001:960:2:29a::2/64"
# Local IPv6 subnet
LSN="2001:960:6eb"
# Time to live
TTL="64"
# Maximum transfer unit
# Maximum transfer unit
MTU="1280"
##############################################
#########################################
### DO NOT EDIT ANYTHING BELOW UNLESS ###
#### YOU KNOW WHAT YOU ARE DOING!! ####
#########################################
# System variables
FILENAME=`basename $0`
IP=`which ip`
IFCONFIG=`which ifconfig`
ROUTE=`which route`
# Start the IPv6 engine
start() {
$IFCONFIG sit0 up
$IFCONFIG sit0 tunnel ::$ISP4
$IFCONFIG $IF up
$IFCONFIG $IF add $LOC6
$ROUTE -A inet6 add 2000::/3 gw $ISP6 dev $IF
$IP link set mtu $MTU dev sit0
$IP link set mtu $MTU dev $IF
$IP tunnel change $IF ttl $TTL
# Add additional addresses here
$IP -6 addr add $LSN::1/128 dev $IF
#$IP -6 addr add $LSN::1:1/128 dev $IF
}
# Stop the IPv6 engine
stop() {
$IP -6 route flush dev $IF
$IP link set dev $IF down
$IP tunnel del $IF
$IFCONFIG sit0 down
}
restart() {
stop
start
}
case "$1" in
start)
start
echo -e "Enabling IPv6: [ \033[40;32m OK \033[0m ]"
;;
stop)
stop
echo -e "Disabling IPv6: [ \033[40;32m OK \033[0m ]"
;;
restart)
restart
;;
*)
echo -e "\033[40;32m$FILENAME\033[0m {\033[40;32mstart\033[0m|\033[40;32mrestart\033[0m|\033[40;32mstop\033[0m}"
;;
esac
when i as root, type sixxs.sh start it starts fine, no error messages
Code: [root@localhost root]# sixxs.sh start
SIOCSIFADDR: File exists
SIOCADDRT: File exists
RTNETLINK answers: File exists
Enabling IPv6: [ OK ]
yet if i try to ping the ipv4 of my tunnel broker it works, but if i try to ping6 my tunnel broker, it fails.
i have correctly used IPTABLES on the router (in my case smoothwall) to route protocol 41 and this has worked fine for some time, just stopped yesterday and wont come back
any advice from anyone ??
Quote:[root@smoothwall root]# iptables -t nat -I PREROUTING -p 41 -j DNAT --to-destination 192.168.0.117[root@smoothwall root]# iptables -I FORWARD -p 41 -j ACCEPT
|
|
|
Microsoft Security Update |
Posted by: anyweb - 2004-08-10, 09:00 PM - Forum: Security
- No Replies
|
 |
-----BEGIN PGP SIGNED MESSAGE-----
MICROSOFT SECURITY UPDATE
August 10, 2004
SECURITY UPDATE SUMMARY FOR AUGUST 2004
Microsoft has released an update for Microsoft Exchange Server that addresses newly discovered issues with Outlook Web Access technology.
LEARN MORE
To learn about this update and which software is affected, review the notice on Microsoft.com: [/url]https://www.microsoft.com/security/bulletin...8_exchange.mspx
______________________________________________________________________
HOW TO VERIFY THE AUTHENTICITY OF A MICROSOFT SECURITY E-MAIL MESSAGE
Before you take any advice on downloading software or updating your computer, make sure you can trust the source. Learn the warning signs for spotting a fraudulent security bulletin, as well as how to
check the security certificate for any Web site: [url=https://www.microsoft.com/verifymail/]https://www.microsoft.com/verifymail/
______________________________________________________________________
_
ABOUT THE MICROSOFT SECURITY UPDATE
The Microsoft Security Update is an e-mail alert service designed
for home users and small businesses that provides information about
Microsoft security updates and virus alerts. Microsoft also uses this service to make subscribers aware that they might need to take action to guard against a circulating security threat.
You have received this update because you are a subscriber. If you would like to unsubscribe, follow the instructions at the bottom
of this page. ______________________________________________________________________
_
-----BEGIN PGP SIGNATURE-----
Version: PGP 8.1
iQEVAwUBQRkJHo0ZSRQxA/UrAQHGbAf8DfUoLemSG2ZntpR2/3n4+pDaItkoVQ6/
IP68Vg/BD8vwZiWgu80nfRKZLkcq/R/xrnf/IH5lf1IghY4vwvWPoyf5gPklpzQh
McdUvfce+QT4m37hfcuBv7YCL4ii3UVAPN2nm4UxgRZgF0UmFn2FuTasDm6blRW6
Y6snPL4A+2P9rUgVkEvFOsz4XU1dmqHAxFx4YJtc4uxo5wp1zS2Iuyd71D+cr7cr
Zrg5ypmQGyAlKbl+JGqCz42FjFFUkXY1kEQdz2dOCBUBkfq/96Qbh550/3cOHZEj
ibqdUyBCGX/ISGRABdbaVDPuQh5lA/Xvd9Q6h44AlX/lrkxy6Qdf6w==
=64h7
-----END PGP SIGNATURE-----
To cancel your subscription to this newsletter, reply to this message with the word UNSUBSCRIBE in the Subject line. You can also unsubscribe at the Microsoft.com web site <http://www.microsoft.com/misc/unsubscribe.htm>. You can manage all your Microsoft.com communication preferences at this site.
Legal Information <http://www.microsoft.com/info/legalinfo/default.mspx>.
This newsletter was sent by the Microsoft Corporation
1 Microsoft Way
Redmond, Washington, USA
98052
|
|
|
Fedora Core Ping Problem |
Posted by: jimpy90 - 2004-08-08, 11:04 PM - Forum: Network Problems
- Replies (2)
|
 |
Hi,
I am fairly new to linux and i have just recently formatted my old windows pc to run Fedora Core 2 linux so i can run a server. I am a proficiant networker so i know what i am doing the physical/windows side of things but i can't get the fedora network card to work properly.
Linux Machine is a 3com 3C900 10 Mbp/s network card on a P3 650Mhz 256MB Ram running a recently downloaded copy of Fedora Core 2. It has successfully detected the card on OS install and installed the correct corresponding drivers. It is the device eth0.
Linux machine as windows. Was running windows 2000 (which partition has been deleted) and the NIC worked perfectly with statically configured settings in the same setup several days before the reformat.
XP Machine is connected to a home wireless network with access to the internet via router it also has a second NIC which is a US Robotics 10/100 That i know works.
The network i am trying to acomplish is too simple being just a crossosver cable between the two computers with at proxy running off XP machine so linux can access internet. When i put the crossover cable in the lights light on the back of the NIC's but neither computer can ping each other. i tried connecting the computers through my home routers switch (and the correct cables) but same senario. even when i tried to configure the linux box by the DHCP server on the router, that failed also. Returned error somthing like "Wasnt able to detect settings" but that only happened when set to DHCP.
After each setting change i restarted the entire computer (for good measure) and still no results.
When the computers were connected with a static configuration on the crossover i set up a packet sniffer on the xp machine and sent a ping. The results were that ARP wasn't able to resolve the IP. when i ran ping on the linux machine listening on the XP machine, the sniffer returned nothing.
Can this be fixed or do i need to buy a new Network card? If so can you recomend a card for use with linux (PCI only)
Thanks
James
www.theferal.co.uk
|
|
|
mandrake 10 - Disabling IRQ #18 |
Posted by: dallas - 2004-08-05, 12:28 PM - Forum: Mandriva
- No Replies
|
 |
Hi all.
Just had some fun and games with a mandrake 10 official installation on a new box.
P4 HT 2.8
MSI 865 pe neo2 mobo (sata/pata)
3com parallel tasking 10/100 nic
some rubbish ATI video card
legend 333mhz ddr ram
80gb seagate ata100 drive
After boot up, which took ages, the /var/log/messages was spewing out loads of repetetive garbage, as shown right down the bottom of this post
Aug 6 07:59:19 new kernel: Disabling IRQ #18
Aug 6 07:59:20 new kernel: irq 18: nobody cared!
Sometimes pointing the finger at APIC and USB but in fact this issue is directed at the IDE subsystem. to fix it on this board, go into your bios and in the ide configuration select 'legacy mode' instead of 'native mode'. I have no sata drives so i disabled that completely and made things pata only. Then things are all good! I want to let other people know about this because it's a sucky problem and according to google has made people shun mandrake. It's an easy fix so hopefully I have helped somebody else out so they won't end up like me, dicking with it for hours, tearing my hair out.
enjoy mandrake, it's really pretty :)
da!!as
here's what it'll say.
Aug 6 07:59:20 new kernel: irq 18: nobody cared!
Aug 6 07:59:20 new kernel: Call Trace:
Aug 6 07:59:20 new kernel: [__report_bad_irq+35/128] __report_bad_irq+0x23/0x80
Aug 6 07:59:20 new kernel: [note_interrupt+120/160] note_interrupt+0x78/0xa0
Aug 6 07:59:20 new kernel: [do_IRQ+266/304] do_IRQ+0x10a/0x130
Aug 6 07:59:20 new kernel: [common_interrupt+24/32] common_interrupt+0x18/0x20
Aug 6 07:59:20 new kernel: [default_idle+48/64] default_idle+0x30/0x40
Aug 6 07:59:20 new kernel: [cpu_idle+36/80] cpu_idle+0x24/0x50
Aug 6 07:59:20 new kernel: [release_console_sem+39/192] release_console_sem+0x27/0xc0
Aug 6 07:59:20 new kernel: [printk+362/448] printk+0x16a/0x1c0
Aug 6 07:59:20 new kernel:
Aug 6 07:59:20 new kernel: handlers:
Aug 6 07:59:20 new kernel: [ide_intr+0/352] (ide_intr+0x0/0x160)
Aug 6 07:59:20 new kernel: [ide_intr+0/352] (ide_intr+0x0/0x160)
Aug 6 07:59:20 new kernel: [<c023c750>] (ide_intr+0x0/0x160)
Aug 6 07:59:20 new kernel: [__crc_isapnp_device+8527409/10588319] (__crc_usb_bus_init+0xaa9f7e/0xab1fa8 [usbcore])
Aug 6 07:59:20 new kernel: [<e086a820>] (__crc_usb_bus_init+0xaa9f7e/0xab1fa8 [usbcore])
|
|
|
join us on IRC please |
Posted by: anyweb - 2004-08-03, 09:11 PM - Forum: How Do I?
- Replies (4)
|
 |
this is a reminder to all you members and guests !
we are on IRC
join the EFNET server
and we are #linux-noob
cheers
anyweb
|
|
|
|