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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,210
» Latest member: greg22
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 196 online users.
» 0 Member(s) | 193 Guest(s)
Applebot, Bing, Google

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

 
  RH9 WiFi on laptop
Posted by: Benwin - 2004-03-12, 08:54 AM - Forum: Wireless - Replies (3)


I am currently using RH-9 on my laptop, and would like to use my DWL-650M (Cardbus revision, still uses realtek chipset) but, to no avail.. Also, have an MN-510 USB WiFi adapter (used for wardriving)... neither work... i've tried installing the wifi update, etc...

 

Someone in #redhat on efnet suggested i install Fedora... Will this release support my 2 WiFi cards? Anyone know?

 

I am downloading the ISOs at the moment, and will install Fedora reguardless... but I really need help getting wifi to work -

 

thank you

 

Ben

Print this item

  command not found
Posted by: anyweb - 2004-03-10, 09:06 PM - Forum: Tips and Tricks - Replies (3)


have you ever seen this in Redhat or Fedora ?

 



Code:
[root@localhost anyweb]# ifconfig
bash: ifconfig: command not found




 

the reason... even though you are logged in as root, is because of the WAY you logged in.

 

let's look at the way i logged in by seeing the whole picture...

 

 

 



Code:
[anyweb@localhost anyweb]$ su
Password:
[root@localhost anyweb]# ifconfig
bash: ifconfig: command not found
[root@localhost anyweb]#




 

i logged in to root by using su, now that does make me root, but it doesnt give me root's path to all the lovely things root normally has access to..... which explains the errors above.

 

So, to get root and roots path simply do like this

 

 

 

 



Code:
[anyweb@localhost anyweb]$ su -
Password:
[root@localhost root]# ifconfig
eth1      Link encap:Ethernet  HWaddr 00:02:2D:46:B2:5F
         inet addr:192.168.0.117  Bcast:192.168.0.255  Mask:255.255.255.0
         UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
         RX packets:181014 errors:0 dropped:0 overruns:0 frame:0
         TX packets:173787 errors:322 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:1000
         RX bytes:86004986 (82.0 Mb)  TX bytes:25431537 (24.2 Mb)
         Interrupt:11 Base address:0x100
                                                                               
lo        Link encap:Local Loopback
         inet addr:127.0.0.1  Mask:255.0.0.0
         UP LOOPBACK RUNNING  MTU:16436  Metric:1
         RX packets:2598 errors:0 dropped:0 overruns:0 frame:0
         TX packets:2598 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:0
         RX bytes:1777456 (1.6 Mb)  TX bytes:1777456 (1.6 Mb)

[root@localhost root]#




 

notice now, that ifconfig WORKS.

 

while we are here, look at the first bit of code again, when i logged in as su (without the DASH) root was labelled as

 

 



Code:
[root@localhost anyweb]#




 

but after logging in as su - root is now labelled as

 

 

 



Code:
[root@localhost root]#




 

see the difference ?

 

for more info.. about why this happens have a look at this live chat on IRC i had...

 

Quote:<anyweb> is the su - phenonemon only common to redhat/fedora or all linux ? as in command not found when su versus su ---- TH0R sets channel limit to 200

<hardly_ev> as far my experience proves it "su -" is distribution independent ;)

<|SyKo|> hehaeh never heard of a "su - " phenomenon

<slackmin> i believe you need to adjust your PATH variable

<hardly_ev> however it depends on envirnoment setup

<slackmin> yes look at your .login .loginsh and so on

<anyweb> in redhat and fedora su and su - make a big difference

<anyweb> as in > [/url][url=<___base_url___>/index.php?showtopic=549][/url][url=<___base_url___>/index.php?showtopic=549]https://www.linux-noob.com/forums/index.php?showtopic=549

<anyweb> so i was just wondering is it only those distros, or do others also have this problem

<crib> read the su manpage.

<hardly_ev> anyweb: the - makes su execute .login .loginrc and so on for the user you "su" into

<hardly_ev> anyweb: as crib said read the mans ;)

<crib> typing only 'su' will not load the environment of the user you are changing to. it will merely substitute your UID and GID.

<ducch> anyweb thats 31337~

<anyweb> thats not my question tho, my question is how many distros are affected the same way

<hardly_ev> anyweb: su works the same way on most of the distros

<anyweb> so do most distros also need the - hardly_ev ?

<hardly_ev> anyweb: yep... su behaves the same way in almost any distro I worked with

Print this item

  Incredilble Problem in X
Posted by: Dan Dare - 2004-03-10, 04:37 PM - Forum: Xorg Problems - Replies (2)

I

Print this item

  sound driver problems
Posted by: MKIV256 - 2004-03-10, 06:32 AM - Forum: Audio and Video - Replies (2)

I have a soundblaster 16 card on my p3 500. Right now I use slax live. I usually use Fedora Project. It gives me a dev//dsp error and it uses the null output. I dont get any sound with null output. Is there any way to give me sound? I would appreciate any response.

Print this item

  Liux Drivers
Posted by: Guest - 2004-03-10, 04:49 AM - Forum: How Do I? - No Replies


Can anyone help me how to install drivers for linux? im using Lindows 4.5...

 

Lindows used drivers that are generic and does not give the full capability of the hardware like video and audio.

 

tnx..

Print this item

  what distro do you use ?
Posted by: anyweb - 2004-03-09, 09:44 PM - Forum: Polls - Replies (6)


go on then, which one do you use (most)

 

be honest !

 

cheers

 

anyweb :)

Print this item

  how to fake CTCP VERSION replies in XCHAT
Posted by: anyweb - 2004-03-09, 10:20 AM - Forum: Tips and Tricks - Replies (4)


if you want to hide the version of XCHAT that you are currently using, then do two things

 

1. click on 'Server' and tick 'hide version'

 

2. click on 'Settings', 'Lists' and CTCP Replies

 

if VERSION is not listed there, then ADD it

 

paste in the following text, or edit it yourself to say something l33t :P

 

Code:
nctcp %s VERSION mIRC 5.91 (16 bit) for Microsoft
<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-13-1078827828.png" data-fileid="84">[img]<fileStore.core_Attachment>/post-13-1078827828.png[/img]</a>



Attached Files
.png   Screenshot_3.png (Size: 238.16 KB / Downloads: 345)
Print this item

  Few Random Shots
Posted by: entity119 - 2004-03-09, 03:28 AM - Forum: Linux - No Replies


Thought I'd post a few of my old screenshots.

 

Currently running Server 2003, going to be dual booting into FC1 soon (downloading ISO's now). These shots are from when I was using RH9 ;)

 

[Image: teamterror.PNG]

KDE3.1 Under cygwin

 

[Image: Screenshot2.png]

Base G2 Install

 

[Image: kdesplash.JPG]

KDE/Cygwin Splash

 

I'll post some more once I get Fedora & Wine setup (need my studio mx B) )

Print this item

  Reference?
Posted by: Guest - 2004-03-09, 03:13 AM - Forum: How Do I? - Replies (3)

Looking for information for someone who has a basic concept of the open source idea but no clue how to use it. Maybe a good faq or something? Thank you!

Print this item

  Virtual Resolution
Posted by: Guest - 2004-03-08, 04:48 PM - Forum: How Do I? - Replies (1)


Hey guys, I was wondering how I could possibly have a desktop resolution larger than my screen resolution? (ie: screen resolution is 1024x768, desktop resolution is 1920x1440).

 

Thanks for the help B)

Print this item