• General Linux Chat and Small Questions
    3,153 replies, posted
If you're on Linux run (in a terminal) [code] lspci ifconfig -a iwconfig [/code] Post results here.
[code][root@datab ~]# lspci 00:00.0 Host bridge: Intel Corporation 82P965/G965 Memory Controller Hub (rev 02) 00:01.0 PCI bridge: Intel Corporation 82P965/G965 PCI Express Root Port (rev 02) 00:19.0 Ethernet controller: Intel Corporation 82562V 10/100 Network Connection (rev 02) 00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 02) 00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 02) 00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 02) 00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 02) 00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 02) 00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 02) 00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 02) 00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 02) 00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 02) 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev f2) 00:1f.0 ISA bridge: Intel Corporation 82801HH (ICH8DH) LPC Interface Controller (rev 02) 00:1f.2 SATA controller: Intel Corporation 82801HR/HO/HH (ICH8R/DO/DH) 6 port SATA AHCI Controller (rev 02) 00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 02) 01:00.0 VGA compatible controller: ATI Technologies Inc RV516 [Radeon X1300/X1550 Series] 01:00.1 Display controller: ATI Technologies Inc RV516 [Radeon X1300 Pro] (Secondary) 03:0a.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) [root@datab ~]# ifconfig -a eth0 Link encap:Ethernet HWaddr 00:19:D1:53:41:A3 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:21 Memory:dffe0000-e0000000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:416 errors:0 dropped:0 overruns:0 frame:0 TX packets:416 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:35156 (34.3 KiB) TX bytes:35156 (34.3 KiB) [/code]
I don't see it in there. Is it USB?
On the PuTTY stuff I asked about, got it working. Set source port to anything you like, I used 7070. Destination, leave blank. Settings below, dynamic and auto. Connect, login, configure browser to use SOCKS5 proxy at localhost, port 7070, and now it's working.
[QUOTE=PvtCupcakes;26659050]I don't see it in there. Is it USB?[/QUOTE] Yes
[QUOTE=AntoniD;26659136]Yes[/QUOTE] Use lsusb instead of lspci in that case.
Anyone know a way to give a user access to no other command than exit?
[QUOTE=nikomo;26659686]Anyone know a way to give a user access to no other command than exit?[/QUOTE] Set their shell to /bin/false? They wouldn't even get exit.
[QUOTE=PvtCupcakes;26659409]Use lsusb instead of lspci in that case.[/QUOTE] [code][amd@datab ~]$ lsusb Bus 007 Device 002: ID 0461:4d15 Primax Electronics, Ltd Dell Optical Mouse Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 006 Device 002: ID 413c:2003 Dell Computer Corp. Keyboard Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 002: ID 1915:2234 Nordic Semiconductor ASA Linksys WUSB54G v1 OEM 802.11g Adapter [Intersil ISL3886] Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub [/code]
[QUOTE=nikomo;26659686]Anyone know a way to give a user access to no other command than exit?[/QUOTE] alias *='exit' [editline]13th December 2010[/editline] that might work
After a little googling I found the follwing: [url]http://wiki.debian.org/prism54[/url] This describes how it should be done (for debian) Your device is an Intersil ISL3886 From what I read it also needs firmware Let me look into it a bit more and I'll come up with a proper solution The driver you need is called p54usb [editline]12th December 2010[/editline] It's the right device (according to kernel.org) [url]http://wireless.kernel.org/en/users/Drivers/p54/devices[/url] [editline]12th December 2010[/editline] I found the right firmware. [url]http://daemonizer.de/prism54/prism54-fw/fw-usb/2.13.1.0.arm.0[/url] This firmware need to go in /lib/firmware and needs to be named isl3886usb Here's how to do it (make sure that you are root) [code] wget http://daemonizer.de/prism54/prism54-fw/fw-usb/2.13.1.0.arm.0 mv 2.13.1.0.arm.0 isl3886usb mkdir /lib/firmware cp isl3886usb /lib/firmware [/code] Note: to become root run: :siren:[b]Being root comes with great responsibility. You will not be prompted in case you're about to break something. Be careful.[/b]:siren: [code] su - [/code]
I need it for Fedora not Debian though. :( Thanks for the firmware though! But how do I do the P54 thing on Fedora?
The module should already be installed. All you need is the firmware. Post the results of [code]lsmod[/code] and [code]dmesg[/code]
I'm using the latest 2.6.37-rc5 kernel, and I'm wondering which kernel has the 200-line "speed patch" applied to it, and if it has already been implemented to the pre-compiled deb packages? I'd rather not have to wait hours to compile a kernel again, and I'm curious if the patch has already been implemented, or possibly will be in the future kernel release schedule? I don't feel like digging through a pile of change logs... -_-
it is due to be in 2.6.37 but I have no idea if it is in RC5 or not. I use liquorix personally.
So, apparently Fedora doesn't support my wireless drivers to boot, so I can't install it. A 3.3gb DVD, and apparently it doesn't contain at least the base files to perform an offline install. All this after it resized my Ubuntu partition, which won't boot now. I think it's safe to say Fedora is a no-go for me.
[QUOTE=tarkata14;26688810]So, apparently Fedora doesn't support my wireless drivers to boot, so I can't install it. A 3.3gb DVD, and apparently it doesn't contain at least the base files to perform an offline install. All this after it resized my Ubuntu partition, which won't boot now. I think it's safe to say Fedora is a no-go for me.[/QUOTE] I've never done an online install of Fedora so not exactly sure what you are on about it installs offline fine.
[QUOTE=HTF;26688854]I've never done an online install of Fedora so not exactly sure what you are on about it installs offline fine.[/QUOTE] It won't let me continue the installer until I set up my ethernet port, I'll take a closer look when I get home. Has anyone here any experience with Blender in Fedora? My main problem in Ubuntu is that external renderers either didn't work at all or if they did, they'd go terribly ridiculously slow.
Ok. I've usually stayed away from wine, considering there as many bugs with wine as there are computers using it. But Win7 is being a douche so I've dived in and gone for the one thing that wine seems to handle pretty well. Source games. I've got steam working, it initially refused to boot any source games upon I quickly realised that I needed the lib32 drivers for my card. That's sorted. Now it's telling me that it "couldn't create D3D object" and spits out a shitload of [code] fixme:d3d:wined3d_get_format Can't find format unrecognized (0x34324644) in the format lookup table fixme:d3d:debug_d3dformat Unrecognized 0x34324644 (as fourcc: DF24) WINED3DFORMAT! fixme:d3d:wined3d_get_format Can't find format unrecognized (0x34324644) in the format lookup table fixme:d3d:debug_d3dformat Unrecognized 0x34324644 (as fourcc: DF24) WINED3DFORMAT! fixme:d3d:wined3d_get_format Can't find format unrecognized (0x34324644) in the format lookup table fixme:d3d:debug_d3dformat Unrecognized 0x34324644 (as fourcc: DF24) WINED3DFORMAT! fixme:d3d:wined3d_get_format Can't find format unrecognized (0x34324644) in the format lookup table fixme:d3d:debug_d3dformat Unrecognized 0x4c4c554e (as fourcc: NULL) WINED3DFORMAT! [/code] into the terminal. Following the suggestions from the handy dandy URL provided by the generated error to a steam support page. I've tried running it at dxlevel 80,81 and 90 all generate exactly the same error. I'm running a fresh x64 arch install with an Nvidia 460GTX. Any thoughts?
[url]http://www.humblebundle.com/[/url] I think you should all go give at least the Linux average :3: [img]http://bbrks.me/i/Edu.png[/img]
[QUOTE=rieda1589;26691555][url]http://www.humblebundle.com/[/url] I think you should all go give at least the Linux average :3: [img_thumb]http://bbrks.me/i/Edu.png[/img_thumb][/QUOTE] Shityes! I missed out on the humble indie bundle. I'll be fucked if I'm missing it this time. I already have braid but I am so there.
[QUOTE=Cluckyx;26691579]Shityes! I missed out on the humble indie bundle. I'll be fucked if I'm missing it this time. I already have braid but I am so there.[/QUOTE] I got the first one too, they sent me an email the other day giving me a steam code to activate all the games I got in the first pack on steam! :D
I bought it too, I've always wanted to play both Braid and Machinarium.
beware Machinarium throws all kinds of hissy fits on a 64 bit system. I'm still resolving x86 dependencies after half an hour. [editline]14th December 2010[/editline] Fuck yeah. Already a HIB2 problem. Machinarium is asking for something. Gtk-Message: Failed to load module "gnomesegvhandler": libgnomesegvhandler.so: cannot open shared object file: No such file or directory then it segfaults. I can't find any useful information about this lib. What package does it belong to?
I paid :20bux: for the first one, it was worth more for lugaru alone. will definitely be buying this one
I don't remember exactly what I paid for the first one, but it was $20 or more. $21 probably. Paid $23 for this one. :v: [editline]14th December 2010[/editline] Since I'm on the next page now, this is about the Humble Indie Bundle 2.
Yes, finally one of these set your price things. I need to try if PayPal can actually charge me for 0.01USD. Which would be funny considering that's less than a cent in Euros. I'll probably end up buying it for a proper price later on anyways.
So I got Fedora 14 installed yesterday, and found out I don't really like it, so it's back to Ubuntu for the time being. Still waiting to get Windows 7 for christmas, with TES:V being announced and whatnot I think I'm going to rebuy Morrowind and play that, don't know how well it'd work in Wine though.
I never really liked fedora either.
Ever since I switched to Arch, I feel locked up in most graphical distros.
Sorry, you need to Log In to post a reply to this thread.