spacer
spacer search

PHARscape
Phar enough!

Search
spacer
header
Main Menu
Home
Linux and 3G
Linux and 3G Forum
Python Stuff
Pictures
Astronomy
Links
Contacting Me
Search
Mambo License
About
Syndicate
Lunarpages.com Web Hosting
 
Home arrow Linux and 3G Forum

PHARscape
3G Datacards and Linux
 
  FAQFAQ    SearchSearch  RegisterRegister 
   Log inLog in 

HSOconnect on Fedora 9 - Quick Howto
Goto page 1, 2  Next
 
Post new topic   Reply to topic    PHARscape Forum Index -> HSOconnect
View previous topic :: View next topic  
Author Message
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 510
Location: UK and Belgium

uk.gif
PostPosted: Sat May 24, 2008 1:11 pm    Post subject: HSOconnect on Fedora 9 - Quick Howto Reply with quote

This is a Howto for Fedora 9 - getting the driver installed and getting HSOconnect running.

This HowTo is based on the hard disk install of the Fedora Gnome liveCD
This Howto assumes you will use Firefox 3 to download the files. (All files will be placed in the ~/Download directory of your home directory.)

Before you can compile anything you need to install the following packages using the "Add/Remove Software" tool:
Code:
gcc
kernel-devel-YOUR_KERNEL_VERSION
glibc-headers


Create a workspace
Open a console window [Applications/System Tools/Termainal] (we will create a temporary work space)
type
Code:
cd ~
mkdir hso
cd hso



Install the driver.
1. Using Firefox download the HSO driver from here
2. Copy the file and Untar the file
Code:

cp ~/Download/ hso-1.2.tar.gz .
tar zxf  hso-1.2.tar.gz

3. Change directory:
Code:
cd hso

4. build and install the driver as root:
Code:
su
make
make install
cd ..

Install the rezero utility
5. Download and install the rezero package from here
Code:
mkdir rezero
cp ~/Download/hso-udev.tar.gz ./rezero
cd rezero
tar zxf hso-udev.tar.gz
#now delete the rezero binary in that directory to force the compiler to work....
rm ./rezero
make
make install
cd ..

6. Create a new udev rule
Code:
su
gedit /etc/udev/udev.rules/39_hso-udev.rules

Quote:
# send rezero command via usb_storage driver for all ZCOPTION devices
SUBSYSTEMS=="scsi", ATTRS{vendor}=="ZCOPTION", KERNEL=="sg[0-9]*", RUN+="/usr/sbin/rezero /dev/%k"
KERNEL=="ttyHS?", MODE="0666",OWNER="root",GROUP="root"

7. restart udev
Code:
/sbin/udevadm control --reload_rules


Install the hsolinkcontrol utility

8. Download the source files from here
Code:
cp ~/Download/hsolink_1.0.46.orig.tar.gz ./
tar zxf hsolink_1.0.46.orig.tar.gz
cd hsolink_1.0.46
./configure
make
make install
chmod +s /usr/locall/bin/hsolinkcontrol


Finally - Install the HSOconnect application


Download the Python 2.5 rpm from here
Double-click the rpm file listed in Firefox's download window. This will install the RPM.

Everything should now just work.

You can run HSOconnect in two ways:

From the menu Applications/Internet/HSOconnect
or
From the command line python -m hsoc
[python /usr/lib/python2.5/site-packages/hsoc/HSOconnect.py also works]


NOTES

Don't forget to configure the connection profile with the right user name, password and APN for your network.

If anyone knows a better udev rule please let me know. At the moment Fedora will complain about ZEROCD but will continue to work.

I hope this is helpfull to someone. If you find any errors or have suggestions let me know.

Cheers,
Paul


Last edited by Paul on Thu May 29, 2008 12:50 pm; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Mon May 26, 2008 12:39 am    Post subject: Reply with quote

Good evening !

Since the first compilation I have a problem and it does not, as I have this error :

Quote:
[root@localhost hso]# make
mkdir -p /home/Quentin/Bureau/hso/tmp/.tmp_versions
make -C /lib/modules/2.6.25.3-18.fc9.i686/build M=/home/Quentin/Bureau/hso MODVERDIR=/home/Quentin/Bureau/hso/tmp/.tmp_versions modules
make[1]: entrant dans le répertoire « /usr/src/kernels/2.6.25.3-18.fc9.i686 »
CC [M] /home/Quentin/Bureau/hso/hso.o
/home/Quentin/Bureau/hso/hso.c: In function ‘hso_serial_common_create’:
/home/Quentin/Bureau/hso/hso.c:1960: attention : ignoring return value of ‘device_create_file’, declared with attribute warn_unused_result
gcc: Erreur internal error: Trappe pour point d'arrêt et de trace (programme cc1)
SVP soumettre un rapport complet d'anomalies.
Consulter pour les instructions.
make[2]: *** [/home/Quentin/Bureau/hso/hso.o] Erreur 1
make[1]: *** [_module_/home/Quentin/Bureau/hso] Erreur 2
make[1]: quittant le répertoire « /usr/src/kernels/2.6.25.3-18.fc9.i686 »
make: *** [modules] Erreur 2
[root@localhost hso]#


How can we ensure that it works, I do this on a new F9 install in my PC.
The kernel is : 2.6.25.3-18.fc9.i686
Gcc and a kernel sources is installed.

Help me please.

Thank you very much.
Back to top
View user's profile Send private message
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 510
Location: UK and Belgium

uk.gif
PostPosted: Mon May 26, 2008 3:22 am    Post subject: Reply with quote

Hi,

You have the same kernel I have.

I recommend you check that the kernel-devel package is correct.

I am no expert about gcc but I see it is reporting an internal error
Quote:
gcc: Erreur internal error: Trappe pour point d'arrêt et de trace (programme cc1)


Are gcc 4.3.0 and libgcc-4.3.0 installed?
Cheers,
Paul
Back to top
View user's profile Send private message Visit poster's website
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Mon May 26, 2008 11:01 am    Post subject: Reply with quote

Hi,

Yes this packages are installed.

When the kernel-devel same and I do not see why is not good, I installed with this comand :

Quote:
yum install kernel-devel-2.6.25.3-18.fc9.i686


I have no idea about it and not understand, except this internal error that I saw, but how these problems solved?

Help me please,

Thank you very much!
Back to top
View user's profile Send private message
atroj



Joined: 23 May 2008
Posts: 4

blank.gif
PostPosted: Tue May 27, 2008 12:50 pm    Post subject: Reply with quote

Have you also installed the kernel-headers package?
# yum install kernel-headers

I was having problems compiling without it.
Back to top
View user's profile Send private message
atroj



Joined: 23 May 2008
Posts: 4

blank.gif
PostPosted: Tue May 27, 2008 12:56 pm    Post subject: Reply with quote

Code:
# python -m /usr/lib/python2.5/site-packages/hsoc/HSOconnect.py
Traceback (most recent call last):
  File "/usr/lib/python2.5/runpy.py", line 85, in run_module
    loader = get_loader(mod_name)
  File "/usr/lib/python2.5/pkgutil.py", line 456, in get_loader
    return find_loader(fullname)
  File "/usr/lib/python2.5/pkgutil.py", line 466, in find_loader
    for importer in iter_importers(fullname):
  File "/usr/lib/python2.5/pkgutil.py", line 422, in iter_importers
    __import__(pkg)
ImportError: No module named /usr/lib/python2.5/site-packages/hsoc/HSOconnect
Running python2.5 -m hsoc as root is the only way I'm able to actually open this.
Back to top
View user's profile Send private message
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Tue May 27, 2008 5:08 pm    Post subject: Reply with quote

Hello,

This does not work with me even after changing pc and that this compilation are well made and well it does not m'active port ttyHS1 when I put my key, so I can not use it to connect to the net with.

What to do for what in my file /dev ?

Thank you.
Back to top
View user's profile Send private message
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 510
Location: UK and Belgium

uk.gif
PostPosted: Tue May 27, 2008 10:21 pm    Post subject: Reply with quote

Quote:
well it does not m'active port ttyHS1 when I put my key

What does dmesg report when you plug the stick in?
Post it here and I might be able to help you more.

Paul
Back to top
View user's profile Send private message Visit poster's website
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 510
Location: UK and Belgium

uk.gif
PostPosted: Tue May 27, 2008 10:38 pm    Post subject: Reply with quote

atroj wrote:
Running python2.5 -m hsoc as root is the only way I'm able to actually open this.

I used the GUI installer as a normal user to install the RPM (I had to provide the root password when asked).

Check the files in /usr/lib/python2.5/site-packages/hsoc to see what permissions they have (they need read permissions for normal users and the directory needs read/write/execute for normal users.

python -m hsoc uses PYTHONPATH to find the hsoc module (-m for module)

python /usr/lib/python2.5/site-packages/hsoc/HSOconnect.py (no -m ) does not use PYTHONPATH
Back to top
View user's profile Send private message Visit poster's website
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Tue May 27, 2008 11:04 pm    Post subject: Reply with quote

Hello,

This is a dmesg log :

Quote:
Normal zone: 0 pages used for memmap
Movable zone: 0 pages used for memmap
Detected use of extended apic ids on hypertransport bus
ACPI: PM-Timer IO Port: 0x508
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Processor #0 (Bootup-CPU)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Processor #1
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 0 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ0 used by override.
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Setting APIC routing to flat
ACPI: HPET id: 0x10de8201 base: 0xfed00000
Using ACPI (MADT) for SMP configuration information
PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
Allocating PCI resources starting at 40000000 (gap: 38000000:c6c00000)
SMP: Allowing 2 CPUs, 0 hotplug CPUs
PERCPU: Allocating 45232 bytes of per cpu data
Built 1 zonelists in Node order, mobility grouping on. Total pages: 224698
Policy zone: DMA32
Kernel command line: ro root=/dev/VolGroup00/LogVol00 rhgb quiet
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 32768 bytes)
TSC calibrated against PM_TIMER
Marking TSC unstable due to TSCs unsynchronized
time.c: Detected 2210.015 MHz processor.
spurious 8259A interrupt: IRQ7.
Console: colour VGA+ 80x25
console [tty0] enabled
Checking aperture...
Node 0: aperture @ 7440000000 size 32 MB
Aperture beyond 4GB. Ignoring.
No AGP bridge found
Memory: 893184k/917248k available (2657k kernel code, 23676k reserved, 1395k data, 356k init)
CPA: page pool initialized 1 of 1 pages preallocated
SLUB: Genslabs=13, HWalign=64, Order=0-1, MinObjects=4, CPUs=2, Nodes=1
hpet clockevent registered
Calibrating delay using timer specific routine.. 4423.36 BogoMIPS (lpj=2211681)
Security Framework initialized
SELinux: Initializing.
SELinux: Starting in permissive mode
selinux_register_security: Registering secondary module capability
Capability LSM initialized as secondary
Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Mount-cache hash table entries: 256
Initializing cgroup subsys ns
Initializing cgroup subsys cpuacct
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
CPU 0/0 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
ACPI: Core revision 20070126
Using local APIC timer interrupts.
APIC timer calibration result 12556929
Detected 12.556 MHz APIC timer.
Booting processor 1/2 APIC 0x1
Initializing CPU#1
Calibrating delay using timer specific routine.. 4419.81 BogoMIPS (lpj=2209909)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
CPU 1/1 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ stepping 02
Brought up 2 CPUs
sizeof(vma)=176 bytes
sizeof(page)=56 bytes
sizeof(inode)=560 bytes
sizeof(dentry)=208 bytes
sizeof(ext3inode)=760 bytes
sizeof(buffer_head)=104 bytes
sizeof(skbuff)=224 bytes
sizeof(task_struct)=6272 bytes
CPU0 attaching sched-domain:
domain 0: span 00000000,00000003
groups: 00000000,00000001 00000000,00000002
domain 1: span 00000000,00000003
groups: 00000000,00000003
CPU1 attaching sched-domain:
domain 0: span 00000000,00000003
groups: 00000000,00000002 00000000,00000001
domain 1: span 00000000,00000003
groups: 00000000,00000003
net_namespace: 1016 bytes
Time: 0:29:54 Date: 05/28/08
NET: Registered protocol family 16
No dock devices found.
ACPI: bus type pci registered
PCI: BIOS Bug: MCFG area at e0000000 is not E820-reserved
PCI: Not using MMCONFIG.
PCI: Using configuration type 1
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Transparent bridge - 0000:00:04.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR11._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR12._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNEA] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNEB] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNEC] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LNED] (IRQs 16 17 18 19) *0, disabled.
ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *11
ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *10
ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *11
ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *11
ACPI: PCI Interrupt Link [LACI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [LMC9] (IRQs 20 21 22 23) *11
ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *10
ACPI: PCI Interrupt Link [LPMU] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *15
ACPI: PCI Interrupt Link [LSA1] (IRQs 20 21 22 23) *5
ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
ACPI Warning (tbutils-0217): Incorrect checksum in table [OEMB] - 62, should be 55 [20070126]
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 15 devices
ACPI: ACPI bus type pnp unregistered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
NetLabel: Initializing
NetLabel: domain hash size = 128
NetLabel: protocols = UNLABELED CIPSOv4
NetLabel: unlabeled traffic allowed by default
DMAR:parse DMAR table failure.
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
hpet0: 3 32-bit timers, 25000000 Hz
ACPI: RTC can wake from S4
Switched to high resolution mode on CPU 0
Switched to high resolution mode on CPU 1
system 00:07: ioport range 0x4d0-0x4d1 has been reserved
system 00:07: ioport range 0x800-0x80f has been reserved
system 00:07: ioport range 0x500-0x57f has been reserved
system 00:07: ioport range 0x580-0x5ff has been reserved
system 00:07: ioport range 0x800-0x87f could not be reserved
system 00:07: ioport range 0x880-0x8ff has been reserved
system 00:07: ioport range 0xd00-0xd7f has been reserved
system 00:07: ioport range 0xd80-0xdff has been reserved
system 00:07: ioport range 0x2000-0x207f has been reserved
system 00:07: ioport range 0x2080-0x20ff has been reserved
system 00:07: iomem range 0xfefe0000-0xfefe01ff has been reserved
system 00:07: iomem range 0xfefe1000-0xfefe1fff has been reserved
system 00:07: iomem range 0xfee01000-0xfeefffff has been reserved
system 00:07: iomem range 0xffb80000-0xffffffff could not be reserved
system 00:07: iomem range 0xff300000-0xff3fffff has been reserved
system 00:09: iomem range 0xfec00000-0xfec00fff could not be reserved
system 00:09: iomem range 0xfee00000-0xfee00fff could not be reserved
system 00:09: iomem range 0x38000000-0x3fffffff has been reserved
system 00:0b: ioport range 0x230-0x23f has been reserved
system 00:0b: ioport range 0x290-0x29f has been reserved
system 00:0b: ioport range 0xa00-0xa0f has been reserved
system 00:0b: ioport range 0xa10-0xa1f has been reserved
system 00:0d: iomem range 0xe0000000-0xefffffff has been reserved
system 00:0e: iomem range 0x0-0x9ffff could not be reserved
system 00:0e: iomem range 0xc0000-0xcffff has been reserved
system 00:0e: iomem range 0xe0000-0xfffff could not be reserved
system 00:0e: iomem range 0x100000-0x37ffffff could not be reserved
system 00:0e: iomem range 0xff780000-0xffffffff could not be reserved
PCI: Bridge: 0000:00:04.0
IO window: disabled.
MEM window: disabled.
PREFETCH window: disabled.
PCI: Bridge: 0000:00:09.0
IO window: disabled.
MEM window: disabled.
PREFETCH window: disabled.
PCI: Bridge: 0000:00:0b.0
IO window: disabled.
MEM window: disabled.
PREFETCH window: disabled.
PCI: Bridge: 0000:00:0c.0
IO window: disabled.
MEM window: disabled.
PREFETCH window: disabled.
PCI: Setting latency timer of device 0000:00:04.0 to 64
PCI: Setting latency timer of device 0000:00:09.0 to 64
PCI: Setting latency timer of device 0000:00:0b.0 to 64
PCI: Setting latency timer of device 0000:00:0c.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
checking if image is initramfs... it is
Freeing initrd memory: 3499k freed
audit: initializing netlink socket (disabled)
type=2000 audit(1211934594.501:1): initialized
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
SELinux: Registering netfilter hooks
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
pci 0000:00:00.0: Enabling HT MSI Mapping
pci 0000:00:04.0: Enabling HT MSI Mapping
pci 0000:00:05.0: Enabling HT MSI Mapping
pci 0000:00:07.0: Enabling HT MSI Mapping
pci 0000:00:08.0: Enabling HT MSI Mapping
pci 0000:00:08.1: Enabling HT MSI Mapping
pci 0000:00:09.0: Enabling HT MSI Mapping
pci 0000:00:0b.0: Enabling HT MSI Mapping
pci 0000:00:0c.0: Enabling HT MSI Mapping
pci 0000:00:0d.0: Boot video device
PCI: Setting latency timer of device 0000:00:09.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:09.0:pcie00]
PCI: Setting latency timer of device 0000:00:0b.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:0b.0:pcie00]
PCI: Setting latency timer of device 0000:00:0c.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:0c.0:pcie00]
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
ACPI: ACPI0007:00 is registered as cooling_device0
ACPI: ACPI0007:01 is registered as cooling_device1
hpet_resources: 0xfed00000 is busy
Non-volatile memory driver v1.2
Linux agpgart interface v0.103
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
brd: module loaded
input: Macintosh mouse button emulation as /devices/virtual/input/input0
PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one year, y3k
cpuidle: using governor ladder
cpuidle: using governor menu
usbcore: registered new interface driver hiddev
usbcore: registered new interface driver usbhid
drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
TCP cubic registered
Initializing XFRM netlink socket
NET: Registered protocol family 1
NET: Registered protocol family 17
registered taskstats version 1
Magic number: 8:21:457
Freeing unused kernel memory: 356k freed
Write protecting the kernel read-only data: 1120k
ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 23
ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [LUB2] -> GSI 23 (level, low) -> IRQ 23
PCI: Setting latency timer of device 0000:00:02.1 to 64
ehci_hcd 0000:00:02.1: EHCI Host Controller
ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:02.1: debug port 1
PCI: cache line size of 64 is not supported by device 0000:00:02.1
ehci_hcd 0000:00:02.1: irq 23, io mem 0xdfffec00
ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 10 ports detected
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: EHCI Host Controller
usb usb1: Manufacturer: Linux 2.6.25.3-18.fc9.x86_64 ehci_hcd
usb usb1: SerialNumber: 0000:00:02.1
ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 22
ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [LUB0] -> GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:02.0 to 64
ohci_hcd 0000:00:02.0: OHCI Host Controller
ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:02.0: irq 22, io mem 0xdffff000
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 10 ports detected
hub 1-0:1.0: unable to enumerate USB device on port 2
usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: OHCI Host Controller
usb usb2: Manufacturer: Linux 2.6.25.3-18.fc9.x86_64 ohci_hcd
usb usb2: SerialNumber: 0000:00:02.0
USB Universal Host Controller Interface driver v3.0
SCSI subsystem initialized
Driver 'sd' needs updating - please use bus_type methods
libata version 3.00 loaded.
PCI: Setting latency timer of device 0000:00:06.0 to 64
ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 21
ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [LSA0] -> GSI 21 (level, low) -> IRQ 21
PCI: Setting latency timer of device 0000:00:08.0 to 64
ACPI: PCI interrupt for device 0000:00:08.0 disabled
ACPI: PCI Interrupt Link [LSA1] enabled at IRQ 20
ACPI: PCI Interrupt 0000:00:08.1[B] -> Link [LSA1] -> GSI 20 (level, low) -> IRQ 20
PCI: Setting latency timer of device 0000:00:08.1 to 64
ACPI: PCI interrupt for device 0000:00:08.1 disabled
usb 2-2: new low speed USB device using ohci_hcd and address 2
usb 2-2: configuration #1 chosen from 1 choice
input: Logitech USB RECEIVER as /devices/pci0000:00/0000:00:02.0/usb2/2-2/2-2:1.0/input/input2
input,hidraw0: USB HID v1.11 Mouse [Logitech USB RECEIVER] on usb-0000:00:02.0-2
usb 2-2: New USB device found, idVendor=046d, idProduct=c50e
usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 2-2: Product: USB RECEIVER
usb 2-2: Manufacturer: Logitech
pata_amd 0000:00:06.0: version 0.3.10
PCI: Setting latency timer of device 0000:00:06.0 to 64
scsi0 : pata_amd
scsi1 : pata_amd
ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
ata1.00: ATA-7: MAXTOR STM380215A, 3.AAD, max UDMA/100
ata1.00: 156301488 sectors, multi 16: LBA48
ata1.01: ATAPI: DVD-RW IDE1004, VER 0049, max UDMA/66
ata1: nv_mode_filter: 0x3f39f&0x3f01f->0x3f01f, BIOS=0x3f000 (0xc6c50000) ACPI=0x3f01f (20:30:0x15)
ata1: nv_mode_filter: 0x1f39f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc6c50000) ACPI=0x1f01f (20:30:0x15)
ata1.00: configured for UDMA/100
ata1.01: configured for UDMA/66
ata2: port disabled. ignoring.
scsi 0:0:0:0: Direct-Access ATA MAXTOR STM380215 3.AA PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors (80026 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors (80026 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda: sda1 sda2
sd 0:0:0:0: [sda] Attached SCSI disk
scsi 0:0:1:0: CD-ROM DVDRW IDE1004 0049 PQ: 0 ANSI: 5
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.13.0-ioctl (2007-10-1Cool initialised: dm-devel@redhat.com
kjournald starting. Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
type=1404 audit(1211934602.018:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
SELinux:8192 avtab hash slots allocated. Num of rules:166029
SELinux:8192 avtab hash slots allocated. Num of rules:166029
security: 8 users, 12 roles, 2308 types, 113 bools, 1 sens, 1024 cats
security: 72 classes, 166029 rules
SELinux: Completing initialization.
SELinux: Setting up existing superblocks.
SELinux: initialized (dev dm-0, type ext3), uses xattr
SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses genfs_contexts
SELinux: initialized (dev devpts, type devpts), uses transition SIDs
SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
SELinux: initialized (dev futexfs, type futexfs), uses genfs_contexts
SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
SELinux: initialized (dev proc, type proc), uses genfs_contexts
SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
SELinux: policy loaded with handle_unknown=allow
type=1403 audit(1211934602.715:3): policy loaded auid=4294967295 ses=4294967295
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 23
ACPI: PCI Interrupt 0000:00:07.0[A] -> Link [LMAC] -> GSI 23 (level, low) -> IRQ 23
PCI: Setting latency timer of device 0000:00:07.0 to 64
parport_pc 00:06: reported by Plug and Play ACPI
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
Driver 'sr' needs updating - please use bus_type methods
sr0: scsi3-mmc drive: 1x/40x writer cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 0:0:1:0: Attached scsi CD-ROM sr0
input: PC Speaker as /devices/platform/pcspkr/input/input3
sd 0:0:0:0: Attached scsi generic sg0 type 0
sr 0:0:1:0: Attached scsi generic sg1 type 5
input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input5
ACPI: Power Button (CM) [PWRB]
forcedeth 0000:00:07.0: ifname eth0, PHY OUI 0x1374 @ 1, addr 00:1b:fc:66:dc:d3
forcedeth 0000:00:07.0: highdma pwrctl mgmt timirq gbit lnktim msi desc-v3
i2c-adapter i2c-0: nForce2 SMBus adapter at 0x600
i2c-adapter i2c-1: nForce2 SMBus adapter at 0x700
sata_nv 0000:00:08.0: version 3.5
ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [LSA0] -> GSI 21 (level, low) -> IRQ 21
PCI: Setting latency timer of device 0000:00:08.0 to 64
scsi2 : sata_nv
scsi3 : sata_nv
ata3: SATA max UDMA/133 cmd 0xe400 ctl 0xe080 bmdma 0xd880 irq 21
ata4: SATA max UDMA/133 cmd 0xe000 ctl 0xdc00 bmdma 0xd888 irq 21
ppdev: user-space parallel port driver
ata3: SATA link down (SStatus 0 SControl 300)
ata4: SATA link down (SStatus 0 SControl 300)
ACPI: PCI Interrupt 0000:00:08.1[B] -> Link [LSA1] -> GSI 20 (level, low) -> IRQ 20
PCI: Setting latency timer of device 0000:00:08.1 to 64
scsi4 : sata_nv
scsi5 : sata_nv
ata5: SATA max UDMA/133 cmd 0xd800 ctl 0xd480 bmdma 0xd000 irq 20
ata6: SATA max UDMA/133 cmd 0xd400 ctl 0xd080 bmdma 0xd008 irq 20
ata5: SATA link down (SStatus 0 SControl 300)
ata6: SATA link down (SStatus 0 SControl 300)
ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 22
ACPI: PCI Interrupt 0000:00:05.0[B] -> Link [LAZA] -> GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:05.0 to 64
ALSA sound/pci/hda/hda_intel.c:1810: chipset global capabilities = 0x4401
ALSA sound/pci/hda/hda_intel.c:749: codec_mask = 0x1
ALSA sound/pci/hda/hda_codec.c:2236: hda_codec: model '3stack' is selected for config 1043:8234 (ASUS M2N)
ALSA sound/pci/hda/hda_codec.c:1073: Cannot find slave Side Playback Volume, skipped
ALSA sound/pci/hda/hda_codec.c:1073: Cannot find slave Speaker Playback Volume, skipped
ALSA sound/pci/hda/hda_codec.c:1073: Cannot find slave IEC958 Playback Volume, skipped
ALSA sound/pci/hda/hda_codec.c:1073: Cannot find slave Side Playback Switch, skipped
ALSA sound/pci/hda/hda_codec.c:1073: Cannot find slave Speaker Playback Switch, skipped
SELinux: initialized (dev ramfs, type ramfs), uses genfs_contexts
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
device-mapper: multipath: version 1.0.5 loaded
loop: module loaded
EXT3 FS on dm-0, internal journal
kjournald starting. Commit interval 5 seconds
EXT3 FS on sda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev sda1, type ext3), uses xattr
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
Adding 1802232k swap on /dev/mapper/VolGroup00-LogVol01. Priority:-1 extents:1 across:1802232k
SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ processors (2 cpu cores) (version 2.20.00)
powernow-k8: MP systems not supported by PSB BIOS structure
powernow-k8: MP systems not supported by PSB BIOS structure
ip6_tables: (C) 2000-2006 Netfilter Core Team
nf_conntrack version 0.5.0 (7168 buckets, 28672 max)
ip_tables: (C) 2000-2006 Netfilter Core Team
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts
fuse init (API version 7.9)
SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
Bluetooth: Core ver 2.11
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP ver 2.9
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
Bluetooth: BNEP (Ethernet Emulation) ver 1.2
Bluetooth: BNEP filters: protocol multicast
Bridge firewalling registered
pan0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
eth0: no IPv6 routers present
SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
hub 1-0:1.0: unable to enumerate USB device on port 4
usb 2-4: new full speed USB device using ohci_hcd and address 3
usb 2-4: configuration #1 chosen from 1 choice
usb 2-4: New USB device found, idVendor=0af0, idProduct=6971
usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 2-4: Product: Globetrotter HSDPA Modem
usb 2-4: Manufacturer: Option N.V.
usb 2-4: SerialNumber: Serial Number
hso: /home/quentin/hso/hso/hso.c: 1.2 Option Wireless
hso: Registering procfs
Not our interface
usbcore: registered new interface driver hso
Initializing USB Mass Storage driver...
scsi6 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 3
usb-storage: waiting for device to settle before scanning
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
usb-storage: device scan complete
scsi 6:0:0:0: CD-ROM ZCOPTION HSDPA Modem 3.00 PQ: 0 ANSI: 2
sr1: scsi-1 drive
sr 6:0:0:0: Attached scsi CD-ROM sr1
sr 6:0:0:0: Attached scsi generic sg2 type 5
ISO 9660 Extensions: Microsoft Joliet Level 1
ISOFS: changing to secondary root
SELinux: initialized (dev sr1, type iso9660), uses genfs_contexts
[quentin@localhost icon225]$


My key is not a hso but sg !

Help me for fonctional my key 3G Icon 225 in my fedora9.

Thank you very much.
Back to top
View user's profile Send private message
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 510
Location: UK and Belgium

uk.gif
PostPosted: Wed May 28, 2008 12:21 am    Post subject: Reply with quote

Quote:
USB Mass Storage support registered.
usb-storage: device scan complete
scsi 6:0:0:0: CD-ROM ZCOPTION HSDPA Modem 3.00 PQ: 0 ANSI: 2
sr1: scsi-1 drive
sr 6:0:0:0: Attached scsi CD-ROM sr1
sr 6:0:0:0: Attached scsi generic sg2 type 5
ISO 9660 Extensions: Microsoft Joliet Level 1
ISOFS: changing to secondary root
SELinux: initialized (dev sr1, type iso9660), uses genfs_contexts


Did you install rezero and create the udev rule?

You should not see this message if the udev rule is working correctly.

Paul
Back to top
View user's profile Send private message Visit poster's website
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Wed May 28, 2008 12:30 am    Post subject: Reply with quote

While the tutorial was followed to the letter.
In my file "/etc/udev/rules.d /" The file "39_hso-udev.rules" containing this:

Quote:
# send rezero command via usb_storage driver for all ZCOPTION devices
SUBSYSTEMS=="scsi", ATTRS{vendor}=="ZCOPTION", KERNEL=="sg[0-9]*", RUN+="/usr/sbin/rezero /dev/%k"
KERNEL=="ttyHS?", MODE="0666",OWNER="root",GROUP="root"


And the file created during installation of rezero utility, a step 5.

Elsewhere in when I start the installation with "make" here is what it leaves me a message:

Quote:
make : Rien a faire pour all


Is this normal or not?

The "make install" to him when the air to operate it gives me this in response to the command:

Quote:
install -d /usr/sbin
install -d /etc/udev/rules.d
install rezero /usr/sbin
cp hso.udev /etc/udev/rules.d/z20_hso-udev.rules


Is this correct or not after the first message with the command "make" ?

For me and my sense is rezero install but does not work, we would say that the regulations create udev with the file "39-hso-udev.rules" does not fonctional and this charge.

Where to create the file "udev-control" ?

In /etc/udev/rules.d ?

An root ?

What a temporary work space create ? In my " /home " ? In " / "

At every time I plug my key 3G I ZeroCD launch window as if I plug in a simple key or launch a CD.

Thank you for help and sorry for my english, I not very pratical this language and I'm french.
Back to top
View user's profile Send private message
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Wed May 28, 2008 1:30 am    Post subject: Reply with quote

Here is the description of steps and reply that I was following your tutorial:

Quote:
[root@localhost hso]# ls
hso-1.2.tar.gz
[root@localhost hso]# tar zxf hso-1.2.tar.gz
[root@localhost hso]# cd hso
[root@localhost hso]# su
[root@localhost hso]# make
mkdir -p /root/hso/hso/tmp/.tmp_versions
make -C /lib/modules/2.6.25.3-18.fc9.x86_64/build M=/root/hso/hso MODVERDIR=/root/hso/hso/tmp/.tmp_versions modules
make[1]: entrant dans le répertoire « /usr/src/kernels/2.6.25.3-18.fc9.x86_64 »
CC [M] /root/hso/hso/hso.o
/root/hso/hso/hso.c: In function ‘hso_serial_common_create’:
/root/hso/hso/hso.c:1960: attention : ignoring return value of ‘device_create_file’, declared with attribute warn_unused_result
/root/hso/hso/hso.c: In function ‘hso_net_init’:
/root/hso/hso/hso.c:2763: attention : format ‘%d’ expects type ‘int’, but argument 4 has type ‘long unsigned int’
Building modules, stage 2.
MODPOST 1 modules
CC /root/hso/hso/hso.mod.o
LD [M] /root/hso/hso/hso.ko
make[1]: quittant le répertoire « /usr/src/kernels/2.6.25.3-18.fc9.x86_64 »
[root@localhost hso]# make install
mkdir -p /root/hso/hso/tmp/.tmp_versions
make -C /lib/modules/2.6.25.3-18.fc9.x86_64/build M=/root/hso/hso MODVERDIR=/root/hso/hso/tmp/.tmp_versions modules
make[1]: entrant dans le répertoire « /usr/src/kernels/2.6.25.3-18.fc9.x86_64 »
Building modules, stage 2.
MODPOST 1 modules
make[1]: quittant le répertoire « /usr/src/kernels/2.6.25.3-18.fc9.x86_64 »
modprobe -r hso || true
install -d /lib/modules/2.6.25.3-18.fc9.x86_64/kernel/drivers/net/wwan/
install -m 644 -c hso.ko /lib/modules/2.6.25.3-18.fc9.x86_64/kernel/drivers/net/wwan/
/sbin/depmod -a 2.6.25.3-18.fc9.x86_64
[root@localhost hso]# cd ..
[root@localhost hso]# mkdir rezero
[root@localhost hso]# cd rezero
You have new mail in /var/spool/mail/root
[root@localhost rezero]# tar zxf hso-udev.tar.gz
[root@localhost rezero]# make
make: Rien à faire pour « all ».
[root@localhost rezero]# make install
install -d /usr/sbin
install -d /etc/udev/rules.d
install rezero /usr/sbin
cp hso.udev /etc/udev/rules.d/z20_hso-udev.rules
[root@localhost rezero]# cd ..
[root@localhost hso]# gedit /etc/udev/udev.rules/39_hso-udev.rules
[root@localhost hso]# /sbin/udevadm control --reload_rules
[root@localhost hso]# tar zxf hsolink_1.0.46.orig.tar.gz
[root@localhost hso]# cd hsolink-1.0.46
[root@localhost hsolink-1.0.46]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
[root@localhost hsolink-1.0.46]# make
make all-recursive
make[1]: entrant dans le répertoire « /root/hso/hsolink-1.0.46 »
Making all in src
make[2]: entrant dans le répertoire « /root/hso/hsolink-1.0.46/src »
gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
mv -f .deps/main.Tpo .deps/main.Po
gcc -g -O2 -o hsolinkcontrol main.o
make[2]: quittant le répertoire « /root/hso/hsolink-1.0.46/src »
make[2]: entrant dans le répertoire « /root/hso/hsolink-1.0.46 »
make[2]: Rien à faire pour « all-am ».
make[2]: quittant le répertoire « /root/hso/hsolink-1.0.46 »
make[1]: quittant le répertoire « /root/hso/hsolink-1.0.46 »
[root@localhost hsolink-1.0.46]# make install
Making install in src
make[1]: entrant dans le répertoire « /root/hso/hsolink-1.0.46/src »
make[2]: entrant dans le répertoire « /root/hso/hsolink-1.0.46/src »
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
/usr/bin/install -c 'hsolinkcontrol' '/usr/local/bin/hsolinkcontrol'
test -z "/usr/local/share/man/man8" || /bin/mkdir -p "/usr/local/share/man/man8"
/usr/bin/install -c -m 644 './hsolinkcontrol.8' '/usr/local/share/man/man8/hsolinkcontrol.8'
make[2]: quittant le répertoire « /root/hso/hsolink-1.0.46/src »
make[1]: quittant le répertoire « /root/hso/hsolink-1.0.46/src »
make[1]: entrant dans le répertoire « /root/hso/hsolink-1.0.46 »
make[2]: entrant dans le répertoire « /root/hso/hsolink-1.0.46 »
make[2]: Rien à faire pour « install-exec-am ».
test -z "/usr/local/share/doc/hsolink" || /bin/mkdir -p "/usr/local/share/doc/hsolink"
/usr/bin/install -c -m 644 'README' '/usr/local/share/doc/hsolink/README'
make[2]: quittant le répertoire « /root/hso/hsolink-1.0.46 »
make[1]: quittant le répertoire « /root/hso/hsolink-1.0.46 »
[root@localhost hsolink-1.0.46]# chmod +s /usr/locall/bin/hsolinkcontrol
chmod: ne peut accéder `/usr/locall/bin/hsolinkcontrol': Aucun fichier ou dossier de ce type
[root@localhost hsolink-1.0.46]# chmod +s /usr/local/bin/hsolinkcontrol
Back to top
View user's profile Send private message
twentyfour-fr



Joined: 26 May 2008
Posts: 13

france.gif
PostPosted: Wed May 28, 2008 10:03 pm    Post subject: Reply with quote

Good evening,

In my opinion I think the problem just the utility that was to develop systems for 32 bit (i686) and not for the system in 64-bit like me now and now (x86_64).
This utility was a pre compile for the i686 and not x86_64. I seriously believe that the problem is there because I could see no other explanation for it does not work properly, the more you told me that the kernel you use is the 2.6.25.3-14 in i686 and not x86_64 therefore for me the problem came from there. I'll test on a 32bit see what happens.

Could you make this driver, utility etc. ... works for 64 bit version?

Thank you,

Best regards.
Back to top
View user's profile Send private message
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 510
Location: UK and Belgium

uk.gif
PostPosted: Wed May 28, 2008 10:10 pm    Post subject: Reply with quote

Hi,

Quote:
Could you make this driver, utility etc. ... works for 64 bit version?


All the source code is provided. Delete the executable and recompile it for your system.

Cheers,
Paul
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    PHARscape Forum Index -> HSOconnect All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum