Difference between revisions of "Fedora"

From KeegansWiki
Jump to navigation Jump to search
Line 27: Line 27:
 
* iscsiadm -m node
 
* iscsiadm -m node
 
* iscsiadm -m node -T iqn.2011-5.com.thecus:RAID.iscsi1.vg0.vmware -p 192.168.1.100 --login
 
* iscsiadm -m node -T iqn.2011-5.com.thecus:RAID.iscsi1.vg0.vmware -p 192.168.1.100 --login
 +
 +
=Mounting Windows Share=
 +
* mount -t cifs //jersey/chunky -o username='foo',password='bar' /mnt/chunky
 +
<pre>[root@lenny ~]# grep cifs /etc/fstab
 +
//jersey/Chunky        /mnt/chunky            cifs    credentials=/etc/cifspw 0 0
 +
[root@lenny ~]# cat /etc/cifspw
 +
username=foo
 +
password=bar
 +
</pre>

Revision as of 07:19, 17 May 2011

Installing Wireless HotKey for HP 6450b

The button above the keyboard on my HP ProBook 6450b which enables and disables wireless was nonfunctional, with this error:

Sep 29 11:32:43 localhost kernel: atkbd serio0: Unknown key pressed (translated set 2, code 0xf8 on isa0060/serio0).
Sep 29 11:32:43 localhost kernel: atkbd serio0: Use 'setkeycodes e078 <keycode>' to make it known.
Sep 29 11:32:43 localhost kernel: HP WMI: Unknown response received
Sep 29 11:32:43 localhost kernel: atkbd serio0: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0).
Sep 29 11:32:43 localhost kernel: atkbd serio0: Use 'setkeycodes e078 <keycode>' to make it known.

Running lspci -nnk showed

44:00.0 Network controller [0280]: Broadcom Corporation BCM43224 802.11a/b/g/n [14e4:4353] (rev 01)
Subsystem: Hewlett-Packard Company Device [103c:1509]

Drivers are not installed.

Installation

Now lspci -nnk shows:

44:00.0 Network controller [0280]: Broadcom Corporation BCM43224 802.11a/b/g/n [14e4:4353] (rev 01)
        Subsystem: Hewlett-Packard Company Device [103c:1509]
        Kernel driver in use: wl
        Kernel modules: wl

And it works fine.

Setting up ISCSI targets

  • iscsiadm -m node
  • iscsiadm -m node -T iqn.2011-5.com.thecus:RAID.iscsi1.vg0.vmware -p 192.168.1.100 --login

Mounting Windows Share

  • mount -t cifs //jersey/chunky -o username='foo',password='bar' /mnt/chunky
[root@lenny ~]# grep cifs /etc/fstab
//jersey/Chunky         /mnt/chunky             cifs    credentials=/etc/cifspw 0 0
[root@lenny ~]# cat /etc/cifspw
username=foo
password=bar