• General Linux Chat and Small Questions
    3,153 replies, posted
Running dhcpcd worked for my ethernet, but I couldn't get it back to eth0 using what it said to do on the wiki. Here's lsmod if you still need it: [code]Module Size Used by fuse 56745 3 ipv6 241775 20 ext2 54539 1 snd_seq_dummy 1095 0 snd_seq_oss 24256 0 snd_seq_midi_event 4416 1 snd_seq_oss snd_seq 40160 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event snd_seq_device 4220 3 snd_seq_dummy,snd_seq_oss,snd_seq snd_pcm_oss 33120 0 snd_mixer_oss 12487 1 snd_pcm_oss uvcvideo 54060 0 snd_hda_codec_idt 47489 1 videodev 56207 1 uvcvideo i915 540333 0 snd_hda_intel 18909 0 snd_hda_codec 63981 2 snd_hda_codec_idt,snd_hda_intel hp_wmi 4617 0 sparse_keymap 2468 1 hp_wmi snd_hwdep 4719 1 snd_hda_codec rfkill 11894 1 hp_wmi drm_kms_helper 23644 1 i915 snd_pcm 58607 3 snd_pcm_oss,snd_hda_intel,snd_hda_codec drm 141490 2 i915,drm_kms_helper uhci_hcd 18952 0 snd_timer 15182 2 snd_seq,snd_pcm iTCO_wdt 9013 0 joydev 7343 0 iTCO_vendor_support 1481 1 iTCO_wdt snd 42019 11 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer intel_agp 8496 1 i915 ehci_hcd 34949 0 i2c_algo_bit 4263 1 i915 processor 21396 0 battery 8482 0 intel_gtt 11097 3 i915,intel_agp wmi 7071 1 hp_wmi soundcore 4858 1 snd snd_page_alloc 5805 2 snd_hda_intel,snd_pcm thermal 6403 0 i2c_i801 6871 0 video 9652 1 i915 ac 2441 0 sg 20662 0 button 3858 1 i915 i2c_core 15688 6 videodev,i915,drm_kms_helper,drm,i2c_algo_bit,i2c_i801 agpgart 21392 3 drm,intel_agp,intel_gtt usbcore 113751 4 uvcvideo,uhci_hcd,ehci_hcd serio_raw 3358 0 evdev 7086 9 atl1c 27887 0 psmouse 54703 0 pcspkr 1375 0 lib80211_crypt_tkip 7374 0 wl 2607980 0 lib80211 3174 2 lib80211_crypt_tkip,wl ext4 304408 2 mbcache 4185 2 ext2,ext4 jbd2 58650 1 ext4 crc16 1069 1 ext4 sd_mod 24780 5 pata_acpi 2292 0 ata_piix 18241 4 libata 150313 2 pata_acpi,ata_piix scsi_mod 105492 3 sg,sd_mod,libata[/code]
Did you specify the mac address for each interface or put aa:bb:cc:dd:ee:ff? You might also need to reboot for the changes to work.
[QUOTE=Boris-B;29676329]Did you specify the mac address for each interface? You might also need to reboot for the changes to work.[/QUOTE] Did both.
Can you post the contents of /etc/udev/rules.d/10-network.rules just to be sure. Also, can you post the results form ifconfig -a. [editline]7th May 2011[/editline] Can you post the results from iwconfig as well?
/etc/udev/rules.d/10-network.rules: [code]SUBSYSTEM="net", ATTR{address}=="00:25:B3:53:38:C6", NAME="eth0" SUBSYSTEM="net", ATTR{address}=="00:25:56:7F:5C:23", NAME="wlan0"[/code] ifconfig -a: [code]eth0 Link encap:Ethernet HWaddr 00:25:56:7F:5C:23 inet6 addr: fe80::225:56ff:fe7f:5c23/64 Scope:Link UP BROADCAST RUNNING 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:16 Base address:0xc000 eth1 Link encap:Ethernet HWaddr 00:25:B3:53:38:C6 inet addr:192.168.1.106 Bcast:192.168.1.255 Mask:255.255.255.0 inet6 addr: fe80::225:b3ff:fe53:38c6/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:188 errors:0 dropped:0 overruns:0 frame:0 TX packets:197 errors:0 dropped:0 overruns:0 carrier:1 collisions:0 txqueuelen:1000 RX bytes:149624 (146.1 Kb) TX bytes:20115 (19.6 Kb) Interrupt:43 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:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:592 (592.0 b) TX bytes:592 (592.0 b)[/code] Also, if it means anything, I had to run dhcpcd again when i booted my netbook back up.
I think your issue is that you put caps in the mac address. IIRC, udev doesn't like that. Here's what it should look like [code] SUBSYSTEM="net", ATTR{address}=="00:25:b3:53:38:c6", NAME="eth0" SUBSYSTEM="net", ATTR{address}=="00:25:56:7f:5c:23", NAME="wlan0" [/code]
[QUOTE=Boris-B;29676567]I think your issue is that you put caps in the mac address. IIRC, udev doesn't like that. Here's what it should look like [code] SUBSYSTEM="net", ATTR{address}=="00:25:b3:53:38:c6", NAME="eth0" SUBSYSTEM="net", ATTR{address}=="00:25:56:7f:5c:23", NAME="wlan0" [/code][/QUOTE] I did that(and rebooted again), but nothing changed. [editline]7th May 2011[/editline] Also, how can I stop XFCE from opening 3 terminal windows when I start it?
Ello guys. My wireless isn't working on archbang. It works on Ethernet though. Any advice? My wireless card is RTL8192SE and I am using a toshiba satellite l670-1dr. ifconfig shows that I have eth0 and lo. Any help?
I just found your problem. You put 1 "=" after SUBSYSTEM instead of 2 Should be [code] SUBSYSTEM=="net", ATTR{address}=="00:25:b3:53:38:c6", NAME="eth0" SUBSYSTEM=="net", ATTR{address}=="00:25:56:7f:5c:23", NAME="wlan0" [/code] As for the terminal windows. Those are launched in your "~/.xinitrc" By default it launches 3 terminals and xclock. You can clear out the entries that do that. If you don't have an "~/.xinitrc" then you need to create it and the terminals should go away.
[QUOTE=Boris-B;29677041]I just found your problem. You put 1 "=" after SUBSYSTEM instead of 2 Should be [code] SUBSYSTEM=="net", ATTR{address}=="00:25:b3:53:38:c6", NAME="eth0" SUBSYSTEM=="net", ATTR{address}=="00:25:56:7f:5c:23", NAME="wlan0" [/code] As for the terminal windows. Those are launched in your "~/.xinitrc" By default it launches 3 terminals and xclock. You can clear out the entries that do that. If you don't have an "~/.xinitrc" then you need to create it and the terminals should go away.[/QUOTE] That worked, but there's still the issue of my wireless not working. :saddowns: [editline]7th May 2011[/editline] Is there something special I need to do to make it start?
You need to connect to a network. There's a good guide on how to do it on the arch wiki. You'll need a network manager if you don't want to do it manually every time. I think you should go with wicd since it works with about anything. Here's the archwiki page for it: [url]https://wiki.archlinux.org/index.php/Wicd[/url]
Will it be able to connect automatically? The netbook is for somebody who knows nothing about computers, let alone Linux.
[QUOTE=C:\;29676747]Ello guys. My wireless isn't working on archbang. It works on Ethernet though. Any advice? My wireless card is RTL8192SE and I am using a toshiba satellite l670-1dr. ifconfig shows that I have eth0 and lo. Any help?[/QUOTE] From what I read the driver should come with the kernel. Run the following and post the results: [code] ifconfig -a iwconfig [/code] The only problem you might get is that the thing might want firmware. If you run [code] ifconfig <yourWirelessInterface> up dmesg [/code] And it says something in the lines of: [code] rtl819xU:FirmwareRequest92S(): failed [/code] then you need firmware [editline]7th May 2011[/editline] [QUOTE=Biotic;29677661]Will it be able to connect automatically? The netbook is for somebody who knows nothing about computers, let alone Linux.[/QUOTE] Yes it will. When you run wicd-client you can set it to connect to a network automatically. Remember to add wicd-client to the autostart thing xfce has to that the person the netbook is for will just have to click the icon.
Thanks man it worked! [editline]7th May 2011[/editline] I ran pacman -Syu and updated, now it doesn't detect any wireless networks. :sigh: There was a kernel update in the list.
I forgot to tell you about this. You need to recompile the module every time you update the kernel. This is because the module was built for that specific kernel if you update they stop being compatible. I would suggest you install an AUR helper like yaourt that was reinstalling the driver is one command away.
Thanks, I thought that was it but I wanted to make sure before I did anything.
to answer the question posed earlier in the thread, my first linux experience was with ubuntu 10.04 last year (i hated it)
[QUOTE=Boris-B;29679805]I forgot to tell you about this. You need to recompile the module every time you update the kernel. This is because the module was built for that specific kernel if you update they stop being compatible. I would suggest you install an AUR helper like yaourt that was reinstalling the driver is one command away.[/QUOTE] Do this. Also, be sure to keep a copy of the PKGBUILD and all relevant asserts (or another method of connection) in case you need to rebuild the module without an internet connection (For example, power outage immediately after kernel update) [editline]8th May 2011[/editline] [QUOTE=wlzshroom;29680771]to answer the question posed earlier in the thread, my first linux experience was with ubuntu 10.04 last year (i hated it)[/QUOTE] 10.04 wasn't too bad. I sorta liked 10.10, too, with its new default theme. [editline]8th May 2011[/editline] ...Although I'll have to say 10.10 wasn't exactly all that stable. Gwibber is a fine example of broken, yet shipped software.
I'm compiling a multiboot USB for my mom to try out a few different distros and DEs. So far I have Ubuntu 11.04 and Linux Mint 10 KDE edition. Any other good (user friendly, stable, relatively complete) distros to put on it? And please don't go "ARCH :downs: CLI MASTERRACE" cuz uh I'd rather not teach my mom all that shit.
Is it possible to create a liveCD from an installed distro? So for example, if i installed ubuntu, set it up with everything I want/need and then make a liveCD from it so I can take it with me where ever I go.
There was some tool to do that, but can't remember what it was. [editline]8th May 2011[/editline] [QUOTE=Lyoko774;29696195]And please don't go "ARCH :downs: CLI MASTERRACE" cuz uh I'd rather not teach my mom all that shit.[/QUOTE] Arch LXDE master race. It's actually pretty simple, especially if you use lxlauncher for the desktop. I think it's the default desktop of the distro shipped with the EEE PC.
How would I go about connecting an external monitor? This specific one is a tv connecting through my nvidia card's hdmi port. GRUB appears on it when it's plugged in before boot, but then it switches to the laptop screen. Not sure where to look. Can't find my way around the os yet :) Ubuntu 11.04, the proprietary nvidia drivers are installed.
Menu &#8594; Settings &#8594; Screen/Monitor/Display (Dunno the exact word) Settings Or something like that.
I just tried setting up Arch linux, and once i had it all installed I tried to install LXDE following the official tutorial: [url]https://wiki.archlinux.org/index.php/LXDE#Installation[/url] but when i tried to put in the command pacman -S lxde It just said: LXDE package not found, searching for group arch linux.
So, is there a program to manage the Debian menu in Crunchbang? It's pretty cluttered up right now and I remember the ability to manage it locally was in some program in Ubuntu. [editline]8th May 2011[/editline] Not alacarte, either.
[QUOTE=Richy19;29706329]I just tried setting up Arch linux, and once i had it all installed I tried to install LXDE following the official tutorial: [url]https://wiki.archlinux.org/index.php/LXDE#Installation[/url] but when i tried to put in the command pacman -S lxde It just said: LXDE package not found, searching for group arch linux.[/QUOTE] Try running [code]pacman -Syy[/code]
Hey are steam games compatible with Ubuntu? I want to give it a shot.
[QUOTE=Zoran;29711582]Hey are steam games compatible with Ubuntu? I want to give it a shot.[/QUOTE] Depends on the game. Steam itself won't cause any problems though.
[QUOTE=PvtCupcakes;29712180]Depends on the game. Steam itself won't cause any problems though.[/QUOTE] Although it may be a bit buggy. But it works. Some games works, and some don't, and some work completely magically.
[QUOTE=Zoran;29711582]Hey are steam games compatible with Ubuntu? I want to give it a shot.[/QUOTE] through wine, but again it depends on the game
Sorry, you need to Log In to post a reply to this thread.