Page 6 of 11 FirstFirst 1234567891011 LastLast
Results 101 to 120 of 208

Thread: Oscam-ubuntu

  1. #101
    Junior Member james9813's Avatar
    Join Date
    Mar 2008
    Location
    Melbourne
    Age
    41
    Posts
    197
    Thanks
    85
    Thanked 59 Times in 25 Posts
    Rep Power
    208
    Reputation
    291

    Smile

    Still get the same error!

    Any other ideas!

    Copy of my terminal window:



    Cheers Thanks 4 the help.
    Last edited by james9813; 20-08-10 at 05:14 PM. Reason: adding link



  • #102
    Junior Member james9813's Avatar
    Join Date
    Mar 2008
    Location
    Melbourne
    Age
    41
    Posts
    197
    Thanks
    85
    Thanked 59 Times in 25 Posts
    Rep Power
    208
    Reputation
    291

    Smile

    All good thanks GADO

  • #103
    Junior Member james9813's Avatar
    Join Date
    Mar 2008
    Location
    Melbourne
    Age
    41
    Posts
    197
    Thanks
    85
    Thanked 59 Times in 25 Posts
    Rep Power
    208
    Reputation
    291

    Smile

    trying to copy my:

    Oscam.server
    Oscam.conf
    Oscam.user

    Off my Ubuntu desktop to /usr/local/ect

    I get Error Moving File: Permission Denied

    Help Please

    Cheers James9813

  • #104
    Senior Member Dave001's Avatar
    Join Date
    Jan 2008
    Age
    51
    Posts
    816
    Thanks
    33
    Thanked 308 Times in 159 Posts
    Rep Power
    274
    Reputation
    2411

    Default

    james9813,

    cd /what ever your desktop folder is called
    cp oscam.* /usr/local/etc





    While i'm posting, has anyone managed to access the WebIF remotely?

  • The Following User Says Thank You to Dave001 For This Useful Post:

    james9813 (20-08-10)

  • #105
    Junior Member james9813's Avatar
    Join Date
    Mar 2008
    Location
    Melbourne
    Age
    41
    Posts
    197
    Thanks
    85
    Thanked 59 Times in 25 Posts
    Rep Power
    208
    Reputation
    291

    Smile

    Quote Originally Posted by Dave001 View Post
    james9813,

    cd /what ever your desktop folder is called
    cp oscam.* /usr/local/etc
    when i try and do the above I get:

    CP: cannot create regular file ´/usr/local/etc/oscam.conf': Permission Denied

    Any other ideas

    Cheers 4 the Help

  • #106
    Senior Member Dave001's Avatar
    Join Date
    Jan 2008
    Age
    51
    Posts
    816
    Thanks
    33
    Thanked 308 Times in 159 Posts
    Rep Power
    274
    Reputation
    2411

    Default

    Are you logged in as root?

    You could aslo try.

    vim /usr/local/etc/oscam.conf

    Press i
    Paste the contents of your oscam.conf file in to it.
    Press escape
    :wq

    If it works, do the same for the other two files.

    But I think logging in as root will fix your problem.

  • The Following User Says Thank You to Dave001 For This Useful Post:

    james9813 (20-08-10)

  • #107
    Member davo's Avatar
    Join Date
    Jan 2008
    Location
    In A House
    Age
    55
    Posts
    464
    Thanks
    32
    Thanked 202 Times in 103 Posts
    Rep Power
    232
    Reputation
    921

    Default

    sudo -i (press enter)
    it will prompt you for your root password. then away you go.

  • The Following User Says Thank You to davo For This Useful Post:

    james9813 (21-08-10)

  • #108
    Premium Member
    Join Date
    Jan 2008
    Location
    Melbourne
    Posts
    855
    Thanks
    246
    Thanked 87 Times in 69 Posts
    Rep Power
    244
    Reputation
    886

    Default

    Quote Originally Posted by Dave001 View Post
    james9813,
    cd /what ever your desktop folder is called
    cp oscam.* /usr/local/etc
    try:
    sudo cp oscam.* /usr/local/etc

  • The Following User Says Thank You to jimbo123 For This Useful Post:

    james9813 (21-08-10)

  • #109
    Member davo's Avatar
    Join Date
    Jan 2008
    Location
    In A House
    Age
    55
    Posts
    464
    Thanks
    32
    Thanked 202 Times in 103 Posts
    Rep Power
    232
    Reputation
    921

    Default

    i access webif all the time remotely.

    all you have to do is specify the ip your connecting from in the oscam.conf
    httpallowed = 0.0.0.0-254.254.254.254 <-- means from ANY IP BUT be warned it leaves it open to the world remember. If you know the IP range your coming in from its safer to only allow that range like I do.

    eg..


    Code:
    [webif]
    httpport  = 12345
    httpuser = myusername
    httppwd  = mypassword
    httprefresh  = 10
    httpallowed  = 0.0.0.0-254.254.254.254
    httphideidleclients  = 0
    httpreadonly  = 0
    Davo

  • The Following User Says Thank You to davo For This Useful Post:

    porkop (21-08-10)

  • #110
    Junior Member james9813's Avatar
    Join Date
    Mar 2008
    Location
    Melbourne
    Age
    41
    Posts
    197
    Thanks
    85
    Thanked 59 Times in 25 Posts
    Rep Power
    208
    Reputation
    291

    Smile

    Thanks everyone for your help

    the sudo command fixed it.

    I wasn´t sure what the hell was going on!

    This Linux is a very different beast to Windows!!

    Cheers James9813

  • #111
    Member davo's Avatar
    Join Date
    Jan 2008
    Location
    In A House
    Age
    55
    Posts
    464
    Thanks
    32
    Thanked 202 Times in 103 Posts
    Rep Power
    232
    Reputation
    921

    Default

    when you login to telnet if you use

    sudo -i

    anything you do on that session after entering root password is done as root, no need to prefix with sudo. once you exit that telnet session and go back in you need to do the same again. Its a bit of extra security. you can remove it but when you get used to it i log in each time then sudo -i and im away.

    Davo

  • The Following User Says Thank You to davo For This Useful Post:

    james9813 (21-08-10)

  • #112
    Senior Member Dave001's Avatar
    Join Date
    Jan 2008
    Age
    51
    Posts
    816
    Thanks
    33
    Thanked 308 Times in 159 Posts
    Rep Power
    274
    Reputation
    2411

    Default

    Quote Originally Posted by james9813 View Post

    This Linux is a very different beast to Windows!!
    I learnt something new, I always just log in as root, so I've never had to use the sudo command before.


    Quote Originally Posted by davo View Post
    i access webif all the time remotely.

    all you have to do is specify the ip your connecting from in the oscam.conf
    httpallowed = 0.0.0.0-254.254.254.254 <-- means from ANY IP BUT be warned it leaves it open to the world remember. If you know the IP range your coming in from its safer to only allow that range like I do.

    Davo
    Thanks mate, worked a treat.

  • #113
    Junior Member STI02's Avatar
    Join Date
    Jan 2008
    Location
    Oz
    Posts
    180
    Thanks
    12
    Thanked 0 Times in 0 Posts
    Rep Power
    205
    Reputation
    10

    Default

    F-U-C-K YOU TOO you frustrated Sheep f-u-c-k-er
    Last edited by STI02; 21-08-10 at 11:25 AM.
    The quieter you become, the more you are able to hear

  • #114
    Member davo's Avatar
    Join Date
    Jan 2008
    Location
    In A House
    Age
    55
    Posts
    464
    Thanks
    32
    Thanked 202 Times in 103 Posts
    Rep Power
    232
    Reputation
    921

    Default

    Quote Originally Posted by STI02 View Post
    F-U-C-K YOU TOO you frustrated Sheep f-u-c-k-er
    your a real dick head LOL. what a tosser. HAHA

    I hope this is not to ambiguous for you again to understand. nice WHITE text i wonder where you got that Idea from HAHA.
    Last edited by davo; 21-08-10 at 11:50 AM.

  • #115
    Senior Member Vic's Avatar
    Join Date
    Jan 2008
    Posts
    914
    Thanks
    68
    Thanked 267 Times in 154 Posts
    Rep Power
    255
    Reputation
    1304

    Default

    Quote Originally Posted by davo View Post
    your a real dick head LOL. what a tosser. HAHA

    I hope this is not to ambiguous for you again to understand. nice WHITE text i wonder where you got that Idea from HAHA.
    Davo you should know that some people cant take constructive criticism
    Now I just ignore said tossers

  • #116
    Junior Member marzi's Avatar
    Join Date
    Jun 2008
    Posts
    135
    Thanks
    19
    Thanked 3 Times in 3 Posts
    Rep Power
    197
    Reputation
    25

    Default

    i know this is such a silly question but its been doing my head in now for may too long and any help would be much appreciated, could someone tell me how to find out my provider id for my bluey

  • #117
    Senior Member
    jonc's Avatar
    Join Date
    Jan 2008
    Location
    Bangkok
    Posts
    2,130
    Thanks
    401
    Thanked 836 Times in 335 Posts
    Rep Power
    429
    Reputation
    7951

    Default

    On any DM box
    1. Look on the web interface | channels information tab | Stream Information
    looks like this 0604h: Irdeto, 090bh: Videoguard (News Datacom), 096ch: Videoguard (News Datacom)
    2. With the remote control press - Menu|Information
    3. With CCcam loaded on your remote control press - blue button|softcam menu| yellow button
    It is a hobby so mileage varies
    Loving IPTV with XBMC and android M8
    Join in the XBMCHUB community and visit me at http://tvaddons.ag/

  • The Following User Says Thank You to jonc For This Useful Post:

    marzi (23-08-10)

  • #118
    Junior Member marzi's Avatar
    Join Date
    Jun 2008
    Posts
    135
    Thanks
    19
    Thanked 3 Times in 3 Posts
    Rep Power
    197
    Reputation
    25

    Default

    Quote Originally Posted by davo View Post
    i access webif all the time remotely.

    all you have to do is specify the ip your connecting from in the oscam.conf
    httpallowed = 0.0.0.0-254.254.254.254 <-- means from ANY IP BUT be warned it leaves it open to the world remember. If you know the IP range your coming in from its safer to only allow that range like I do.

    eg..


    Code:
    [webif]
    httpport  = 12345
    httpuser = myusername
    httppwd  = mypassword
    httprefresh  = 10
    httpallowed  = 0.0.0.0-254.254.254.254
    httphideidleclients  = 0
    httpreadonly  = 0
    Davo
    i seem to be having troubles with the webif section, i am able to get everything working except for this i still get the error ' Warning: Oscam compiled without Webinterface support'

  • #119
    Member davo's Avatar
    Join Date
    Jan 2008
    Location
    In A House
    Age
    55
    Posts
    464
    Thanks
    32
    Thanked 202 Times in 103 Posts
    Rep Power
    232
    Reputation
    921

    Default

    LOL,

    well you have to get a version compiled with webif in it hehe.
    If you do a normal cmake & make it wont be with webif.
    when you compile it you need to make it like ...

    cmake -DWEBIF=1 ..

    then...

    make

    that will compile it with webif support.
    go to where ever you got it from and look for one the same but should say WEBIF in the name. If i know what version you want i will compile it for you with webif support if you don't have a development linux box or similar.

  • #120
    Junior Member james9813's Avatar
    Join Date
    Mar 2008
    Location
    Melbourne
    Age
    41
    Posts
    197
    Thanks
    85
    Thanked 59 Times in 25 Posts
    Rep Power
    208
    Reputation
    291

    Smile

    Hey all

    I’m having trouble starting Oscam

    When i type sudo oscam –b

    Terminal window replies with: Oscam command not found!

    What directory do i need to be in to enter the command?

    This is what i have done to date:

    Code:
    sudo apt-get install gcc g++ cmake libpcsclite1 libpcsclite-dev subversion
    cd /usr/src
    sudo wget
    sudo tar xjvf libusb-1.0.8.tar.bz2
    cd libusb-1.0.8
    sudo ./configure --enable-shared=no
    sudo make
    sudo make install
    cd /usr/src
    sudo svn co oscam
    cd oscam
    sudo mkdir build
    cd build
    sudo cmake -DWEBIF=1 ..
    sudo make


    Cheers James9813

  • Page 6 of 11 FirstFirst 1234567891011 LastLast

    Similar Threads

    1. oscam
      By couchpotato in forum Dreambox
      Replies: 840
      Last Post: 20-08-11, 10:56 AM
    2. oscam Remote
      By dartronix in forum Dreambox
      Replies: 0
      Last Post: 16-02-10, 08:07 PM
    3. oscam ir
      By jtc2005 in forum Dreambox
      Replies: 2
      Last Post: 13-02-10, 06:57 PM
    4. Oscam HD
      By poiuytrewq in forum Dreambox
      Replies: 5
      Last Post: 07-02-10, 04:47 PM

    Bookmarks

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •