Debian :: Can't Receive File Via Blueman

Dec 10, 2015

I have installed blueman on XFCE desktop I can send files but I can't receive files what is the problem ? when I open Adapters and change items it dosen't work , indeed it doesn't save changes why ?

View 5 Replies


ADVERTISEMENT

General :: Ubuntu 9.04 - How To Install Blueman From Source File

Jul 22, 2010

I just downloaded the blueman source file to get bluetooth tethering in my linux so that I can use internet (that's the only medium for me) but i dont know how to install from source code. And i cant even get online now! (I am posting this via operamini) Any installation instruction with screen shoot for offline mode installation for blueman? Or is there any other way to connect a pc for the first time via dialup using a phone because I don't have broadband.

View 7 Replies View Related

Ubuntu Networking :: Blueman Installation - Downloaded File Detected As Archive

Jul 30, 2011

I am new to ubuntu. I need to install BLUEMAN on my ubuntu 10.04. I have downloaded the file on my cell from the blueman website , its blueman.tar.gz. Furthermore I don't have any lan or wireless connection on my netbook. How to install this blueman on ubuntu on my netbook? When I transfer the file on unubtu desktop, it is detected as an archive.,,.

View 1 Replies View Related

Debian :: Blueman Input Service Missing

Jul 16, 2015

I'm a recent convert from Linux Mint to Debian for use with an HTPC media center.

I've been using Kodi + Playstation BD Remote for some time successfully with Mint.

I'm having issues getting the remote to work under Debian.

Typically I've been able to pair with Blueman and connect to the Input Service, however, under Debian, There are no "Input Serivce" options in the menus of Blueman..?

I don't know if this is because I'm missing some package that enables this or because my remote is not recognized as an input device. I suspect it is the former, because a bluetooth keyboard I have doesn't expose the "Input Service" menu option either.

View 0 Replies View Related

Debian :: Blueman Connection Failed (Jessie)

Oct 18, 2015

I recently Installed debian 8.2 on my toshiba satellite l505-es5034. Using cinnamon desktop.

Did googling regarding how to get my insignia usb bluetooth dongle functioning and ended up installing blueman.

It can search for devices but when i try to connect to my logitech bluetooth adapter for my stereo it reads "Connection Failed: No such file or directory"

saw on arch linux wiki that this may happen if the user isnt in the lp group so I added the user to the group and still the same result.

I tried connecting to my phone with same result. No issue pairing, connection failed.

View 0 Replies View Related

Debian :: Blueman-applet Not Using Current Icon Theme

Jul 16, 2015

I have the Faenza Icon Theme installed, but it seems blueman-applet could care less. The applet's icon does change to use the Bluetooth application icon, but when it is active or disabled, it uses the icons in /usr/share/icons/hicolor/24/status/.

Part of the problem may be that Faenza has the status icon named bluetooth-active/bluetooth-disabled instead of blueman-active/blueman disabled. However, even if I rename these in /usr/share/icons/Faenza/24/status/, nothing changes. If I copy the icons into the first location mentioned and rename them, it does work. I don't have a problem doing this, but if I ever change themes, I'll have to do it again. Anyway I can make it use the icon theme?

View 0 Replies View Related

Debian Configuration :: Blueman Broken In Testing (Squeeze)

Jun 30, 2010

For anyone using Blueman with Testing (Squeeze), todays Python upgrade to version 2.6 stops it from working due to a Blueman bug. This has been fixed in blueman version 1.21-4, which you can install from SID if you don't want to wait the 10 days for the normal migration.

View 1 Replies View Related

Debian Hardware :: Linking Feature Phone Via Bluetooth LXDE Blueman

May 3, 2014

I would like to send files from my verizon env3 feature phone to my computer via bluetooth, but I can't find anyplace to input a pin. Both the computer and phone offer pins but they never give me a way to input a pin. I am cautious about linking without one because I don't want my computer hacked.

View 1 Replies View Related

General :: Send And Receive File Through Minicom?

Mar 30, 2010

I have setup CentOS as server and Fedora as Client.Now I want to transfer file from server to client through minicom.How to do that?I tried sending file from CentOs and it does have a ASCII format file transfer option while on the other OS only few like xmodem , ymodem and zmodem type of file transfer was present.

View 2 Replies View Related

General :: Make .sh File Receive Data From Php?

Apr 17, 2011

in my php page they ask the user to enter some input example like year. i want that input to be transfer into my .sh file and will show its output. how to make .sh file receive data from php and php sent data to .sh file

View 1 Replies View Related

Networking :: Receive Mail Where Is Openswan Configuration File?

Apr 28, 2010

I want to connect OpenVPN to office network. I receive mail where is openswan configuration file, but I want to OpenVPN

conn CONNECTION-NAME
disablearrivalcheck=no
type=tunnel
left=IP MY SERVER
right=IP OFFICE SERVER
rightsubnet=LOCAL IP SERVER IN OFFICE/32

[Code]....

View 1 Replies View Related

Networking :: Can't Receive File In Yahoo Service With Pidgin

Jan 12, 2011

I can not receive file in yahoo service with pidgin !

View 3 Replies View Related

Ubuntu :: Get Postfix To Receive Mail From One Address And Pipe It To A PHP File?

Oct 7, 2010

Im running Ubuntu server 10.04 lts

Im trying to get postfix to receive mail from one address and pipe it to a PHP file for a help desk software called Trellis Desk.

They recommended that I use Cpanel but its not free and my boss is not willing to pay for it. I need a free solution.

I know my way around Linux but Im no professional

View 1 Replies View Related

Debian :: How To Receive Non-security Updates

Sep 3, 2011

I recently reported a bug in a package, which was fixed upstream and in the Debian package, but the bug was not security-related. The Debian settings on all of the computers is set to receive only the security updates. The other setting for proposed updates, is currently not enabled

Must Proposed Updates be enabled, in order to receive the non-security updates, including the update to the package in question?

View 4 Replies View Related

Debian Programming :: Cannot Receive UDP Packets

May 11, 2015

I am trying to build a socket to retrieve the ethernet packets from ECU(I do not know much about the ECU). When i run my code on windows there is no problem and the code runs correctly. But when i run my code on Debian it gets stuck at s.recv(1024).

I have already set static ip in /etc/network/interfaces as follows:

Code: Select alliface eth0 inet static
address 160.48.199.91
netmask 255.255.255.0
gateway 160.48.199.254

The simple code is as below:

Code: Select all import socket
    import sys
    HOST = "160.48.199.91"
    port = 30490
    s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_UDP)
    s.bind((HOST, 30490))
    while True:
         data = s.recvfrom(1024)
         print(data)

There is no LAN or Router. When i check netstat -s i see that there are 0 UDP and 0 TCP messages received. But when i check in Wireshark on Debian i could see the displayed UDP packets. Does it mean that the UDP packets are reaching the Raspberry Pi but not received by Debian ? Or are these packets being dropped?

View 4 Replies View Related

Debian :: Can't Receive System Messages

Mar 2, 2010

I have a small LAN. I am in the process of installing a Debian Lenny/Squeeze system into the LAN. I want to send and receive system messages using rwalld and wall.I can send a system message from my Debian system to another box using rwall. I can send a local message within the Debian box using wall in a console.I cannot send a local message using wall Konsole in KDE 3.5.x. The KDE Write daemon fails to provide any pop-up window./usr/bin/wall is installed from the bsdutils package and is set to -rwxr-sr-x.

The ktalkd package is installed. The KDE control center shows a configuration option in Internet & Network settings called Local Network Chat.When not in X, mesg is set to y at the console. After starting KDE and I open Konsole, mesg is always set to n. I don't know how this setting toggles. Further, setting mesg to y in Konsole has no effect on getting wall to work.mesg is set to y when I run xterm in KDE. Then wall works within that terminal window. However, the KDE Write daemon does not see the message in xterm.When I send a message from another system to the Debian system using rwall, xterm receives the message but not Konsole or the KDE Write daemon.

When I send a wall message from Konsole, xterm receives the message but not Konsole or the KDE Write daemon.I changed TTYPERM in login.defs to 0620 to no avail.I do not have this problem on the non-Debian systems.

View 4 Replies View Related

Debian Configuration :: Can't Receive System Messages

Mar 2, 2010

I have a small LAN. I am in the process of installing a Debian Lenny/Squeeze system into the LAN. I want to send and receive system messages using rwalld and wall.I can send a system message from my Debian system to another box using rwall. I can send a local message within the Debian box using wall in a console.I cannot send a local message using wall Konsole in KDE 3.5.x. The KDE Write daemon fails to provide any pop-up window./usr/bin/wall is installed from the bsdutils package and is set to -rwxr-sr-x.

The ktalkd package is installed. The KDE control center shows a configuration option in Internet & Network settings called Local Network Chat.When not in X, mesg is set to y at the console. After starting KDE and I open Konsole, mesg is always set to n. I don't know how this setting toggles. Further, setting mesg to y in Konsole has no effect on getting wall to work.mesg is set to y when I run xterm in KDE. Then wall works within that terminal window. However, the KDE Write daemon does not see the message in xterm.When I send a message from another system to the Debian system using rwall, xterm receives the message but not Konsole or the KDE Write daemon.

View 3 Replies View Related

Hardware :: MSI Bluetooth USB Dongle Connection - Certainly Not Long Enough To Send Or Receive A Single File

May 10, 2011

Problems with Bluetooth. The dongle appears to be working, but then it craps out on me after only a few minutes!

I'm using the blueman-manager GUI to connect to my cell phone. If I load blueman-manager almost immediately after connecting my dongle, I can use it for a few minutes, but only long enough to add my phone, pair it and mark it as trusted. Certainly not long enough to send or receive a single file, though. Eventually and inevitably, the connection breaks, blueman-manager hangs/freezes up, and I start getting errors in dmesg.

Here's all the relevant diagnostic stuff...

Code:

Code:

Code:

I added the MARK myself to separate where the dmesg output stops immediately after plugging in the dongle from what appears after the connection is broken. It's right when that timeout error happens that the connection severs itself, and the error usually repeats itself several times.

Even if I just connect the dongle and not do anything except wait a few minutes, after a few minutes that timeout error will still happen. I'm running fluxbox and I don't believe I have any automounting programs, so there wouldn't be any interference from something like that.

View 7 Replies View Related

Debian Multimedia :: Send But Cannot Receive Mails In Evolution?

May 13, 2010

Evolution Mail 2.22.3.1 - Debian Lenny 5.0.4I configured Evolution in my gmail account. I can send successfully emails to users but I cannot receive any emails

View 4 Replies View Related

Debian :: Create An SMTP Server That Receive The Email From Domino?

Feb 22, 2011

Id like to ask you some advice. Im currently using as mail server Lotus Domino. Because of many reasons I need to create an SMTP server that receive the email from Dominothat relay those email into an authenticated SMTP on the internet. How can I do that? I create a Debian virtual machine and I installed Postfix. I edit the config file and set the relay host (authenticated SMTP on internet),the mtp_sasl_auth_enabled and smtp_sasl_password_maps parameters. If I try to send an email using that SMTP server I got a message that say âœRelay access denied, check the email address†What did I do wrong

View 5 Replies View Related

Slackware :: Any Way To Disable Blueman?

Jul 7, 2011

The blueman applet is killing my processor from time to time. The crazy part is that I do not have blue tooth installed in this system. It appears to be a bug upstream and looks like it has been reported but in the mean time is there a way to disable blueman?

View 5 Replies View Related

Ubuntu :: Blueman Not Registering Devices

Apr 27, 2010

I have a usb bluetooth dongle I've connected to my machine. The device appears just fine and using hcitool scan I can scan for device with no trouble. However blueman doesn't seem to register the device even when I force the applet to display and try add a new device it won't scan/see any of the bluetooth devices. Has anyone come across something similar or would know how I should proceed?

View 2 Replies View Related

Slackware :: 13.37 - How To Get Bluetooth And Blueman Working

Jun 22, 2011

Bluetoothd is running.
bash-4.1# pgrep bluetoothd
25394

But when I start blueman-applet the icon on the toolbar is like white with a red 'x' in the centre of it, which doesn't seem right. I'm using fluxbox as my WM so don't know if that's the reason, but blueman isn't responding when I try to setup the device with gui (blueman-applet). My groups for my user are.

Users wheel floppy audio video cdrom plugdev netdev scanner
Hci0 is up.
bash-4.1# hciconfig
hci0:Type: BR/EDR Bus: USB
BD Address: 11:11:11:11:11:11 ACL MTU: 678:8 SCO MTU: 48:10
UP RUNNING PSCAN
RX bytes:2592 acl:0 sco:0 events:75 errors:0
TX bytes:800 acl:0 sco:0 commands:66 errors:0

View 5 Replies View Related

Slackware :: Blueman Plugins For DUN Service

Aug 19, 2010

I'm running slackware current. Blueman works perfectly, except for DUN. I can connect to DUN service, but I don't know to open the connection. I've tried to find help on the blueman website, and I've I've found this page [URL].

Where says to install plugins to use DUN. Before I screw up my blueman configuration .. those plugin are already included in the blueman package? I can't find where to download them. If they are already included, what I've to do to use DUN?

View 1 Replies View Related

Slackware :: How To Remove Blueman Utility In KDE

Jan 21, 2011

How to remove the blueman utility in kde from slack 13.1?

View 2 Replies View Related

OpenSUSE :: Disable Blueman On KDE - Shouldn't Take Over The KDE's Bluedevil

Apr 13, 2011

I have installed Blueman. But I want to disable it on KDE startup so that whenever I turn on my Bluetooth, blueman shouldn't take over the KDE's Bluedevil.

View 9 Replies View Related

Slackware :: Kbluetooth Or Blueman Recognize Device?

Feb 15, 2010

Well I finally got Bluez running correctly. Now the problem is kbluetooth or blueman recognize my device. Here is the output of hciconfig -a

Code:
hci0: Type: USB
BD Address: 00:1B:DC:0F:CD:84 ACL MTU: 310:10 SCO MTU: 64:8

[code]....

View 10 Replies View Related

Fedora Installation :: Blueman 1.21 - Adjust Environment Variables

Mar 24, 2010

I am trying to install blueman on fedora 12. I am compiling it from source. Because their is no rpm file for this. In configuration their is error

bluez is not find..but I have installed bluez-4.57...
Error is:-
Consider adjusting PKG_CONFIG_PATH environment variables if you installed software in non standard prefix.. set evn variables BLUEZ_CFLAGS and BLUEZ_LIBS...

How can I set these variables..to get rid of this error. I want to connect to internet through GPRS enabled phone through bluetooth. Any other way to connect to internet through bluetooth. I am using fedora 12.

View 3 Replies View Related

Ubuntu Networking :: Network Manager See No Blueman's Connection

Feb 26, 2010

After connecting my phone via bluetooth using Blueman and then activating Dialup connection in Blueman, it says "Now DUN is available in Network Manager" or something like this. But, there is NOTHING about DUN connection in NM. What this thing is telling about?

View 5 Replies View Related

Ubuntu :: Unable To Locate Package Blueman-adapters ?

Apr 1, 2011

I cant install bluetooth using sudo apt-get install in ubuntu 10.10

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved