SMS From Linux?

I've been using Gmail's built-in sms client and just had the idea that it would be neat if I could send SMS directly from Linux (CLI or a programme like pidgin)... Just wondering if anyone knows of a service for it.

tony5429 wrote:
cactus wrote:
tony5429 wrote:next task is going to be figuring out if the carrier can be determined by the phone number...
I doubt it, since numbers are supposed to be 'portable' these days (change carriers and take it with you).
You could probably add a flag for carrier though, and have it extrapolate the appropriate email suffixing for you.
sendsms -c att -n 1555555555 "oh balls."
True; I can also brute-force it by default, if the user does't specify a carrier, and just send to all known carriers. Not as secure, as a number could be repeated under a different carrier with a different country code, but it would work.
sounds pretty spammy to me.
not everyone gets free SMS either.

Similar Messages

  • Error while accessing Oracle E-Business Suite 11i from Linux/firefox

    error while accessing Oracle E-Business Suite 11i from Linux/firefox
    OS: SUSE Linux Desktop 11(SLED11)
    Web browser: firefox 3.x
    Java versions:
    # rpm -qa |grep java
    java-1_6_0-sun-plugin-1.6.0.u18-0.1.1
    java-1_6_0-sun-1.6.0.u18-0.1.1
    # java -version
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
    when I access the url firefox says
    "Additional plugins are required to display all the media on this page"
    then I clicked on "Install Missing Plugin" button
    then I got the following message
    No Suitable Plugins were found
    Unknown Plugin (application/x-java-applet;jpi-version=1.4.1)
    please help/suggest
    Regards

    Hi user;
    Its not certified to login EBS from linux client
    Please check:
    Linux-cleint (ebs) certification
    pluggins
    Hope it helps
    Regard
    Helios

  • HT3529 i am unable to send sms from my iphone 4s

    i am unable to send sms from my iphone 4s

    Try Settings > General > Reset > Reset Network Settings.
    If that does not resolve, SMS is a carrier feature, contact the carrier.

  • How to send sms from gsm modem(AT commands) to j2me application(not inbox)

    hi
    i want to send sms from gsm modem to a j2me application, for this to happen i have to send sms to a specific port in which j2me application is running.when i m trying to send sms from modem it doesnt go to application it goes to inbox.
    is it related to udh settings if yes then how do i set port no in settings?if no what are the other ways.

    Hi Vignesh,
    Might be you can call ActiveX or DLL objects of the software installed for modem from LabVIEW, if it is unblocked.
    Have a  look on the link > http://zone.ni.com/devzone/cda/tut/p/id/2983
    CLA 2014
    CCVID 2014

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • How can i send multiple sms from my iphone 4

    how can i send multiple sms from my i phone 4

    Turn Group Messaging (instructions in lin that follows) off and send the message to multiple recipients. The result may be dependent on your carrier. If manually keying in numbers rather than using contacts, use the return key after each number. http://support.apple.com/kb/HT5760

  • How can i retrieve deleted sms from my iphone

    how can i retrieve deleted sms from my iphone 4s?

    If you backed up your iPhone after the texts were made and before you deleted them you can Restore them in iTunes from your backup.

  • Hello I want to switch from iPhone 3GS to 4, is there any way to copy and paste my text massages (sms) from iPhone 3 to 4

    hello I want to switch from iPhone 3GS to 4, is there any way to copy and paste my text massages (sms) from iPhone 3 to 4

    Take Full Backup through iTunes!!

  • Copy SMS from iphone 3g to iphone 4? is it possible

    Hi,
    any way to copy my SMS (Only SMS) from my 3g to my new iphone 4?
    i already have my contacts and Notes online, i still have many SMS that i need but at the same time, i don't want to restore from the 3g backup. my 3g was jailbroken/unlocked with a lot of messed up stuff. i want to have a clean image for the new one.
    i tried to google it but the best i could find is to import it to Mac/PC.
    your help is highly appreciated.

    Thia step by step guide can help:
    How to transfer SMS messages from iPhone 3G to iPhone 4
    You can get more info about iphone backup from support.apple.com

  • Syncing SMS from iPhone 3GS to MacBook Pro

    I want to sync SMS from my iPhone to my Mac, but I don't know how and Google has failed me. I don't want to jailbreak my phone, or hack it in any way, and I don't want to pay for software if there is a free alternative. Everyone seems to be recommending Syphone, but it's outdated and won't support my phone.
    How can I do this quickly and easily?
    Thanks in advance.

    Like it or not, you need third-party software and I don't know of anything free that works. Get this:
    http://www.ecamm.com/mac/phoneview/

  • How can i transfer my sms from iphone 3gs to iphone 4s?

    Hi
    I am thinking about getting an iphone 4s
    How can I transfer my sms from an iphone 3gs to an iphone 4s?

    I just bought a new iPhone, and also had an iPhone before.
    You sync the old iPhone, plug in the new iPhone, and then you will be asked if you want to sync the new one with the old one.
    I also wanted to keep all my SMSs, and it worked - they were transferred to my new iPhone.

  • Fax and SMS from E-Business Suite

    I am currently working on the implementation of HRMS and finance
    modules from the E-business suite. My question is, Is it
    possible to fax or SMS from these core modules, if so how is
    this achieved if using Microsoft exchange, is there any relevant
    documentation around
    Thanks
    Mark

    While I am not aware of any standard published means to do so, you can also think of triggering a Java code to instantiate the business event.
    A non-intrusive approach could be.
    1. Have a Java Business Event Subscription to the Item-create/update event.
    2. Make API calls to the BPEL invocation code from this Java BPES. (The OTN BPEL tutorials have sample code)
    However, there is a risk that the Java client classes required for invoking BPEL processes may not be part of the middle-tier JAVA classpath. ($AF_CLASSPATH in adovars.env). You need to check with techstack team in case you run into issues and need additional jars in the classpath.
    Alternatively,
    3. Create a seeded JMS queue in apps
    4. You can publish a message to a JMS AQ Queue from your Java BES code
    5. Have a JMS adapter to trigger your BPEL process.
    Alternatively, (probably not what you want)
    1. Create a new interface table to store BPEL invocation requests.
    2. Have a DB polling on this table.
    3. Maintain status of BPEL process also in this table.
    4. Purge "success" records from this table at regular intervals. This will keep your DB polling non-intrusive from your actual process flow in apps.

  • Print command from linux PC on to Windows Environment

    Hi Experts,
    We have SAP on Windows and the network printer is also on Windows, the PC with Linux is integrated with network printer i.e when the print command from Linux is given the output is available from the printer (Windows). But when the print command is given through SAP there is no output from Printer (Windows).
    When same user logs into Windows the printer command is successful.

    hi hari,
    Printing SAP documents using Linux client is a little bit tricky if you want to get good printing result just as when you print from your Windows client.
    If you want to use G printing method (on Linux client), you can't use SAPWIN on device type since SAPWIN is relying printing method. You must use exact printer driver. For example when you're using Dot Matrix printer Epson LX300+, you can use EPESCP2
    I am using different method to cheat this and it's completely work.
    ardhian
    http://ardhian.kioslinux.com
    http://sapbasis.wordpress.com

  • How to send mail from linux with .txt file as attachment ..

    I want to send email from linux box and in the body of the email i want to have the content of dblog.txt file.
    I want dglob.txt file content to be part of the mail body.
    Thanks in advance!!

    Apr 29 15:19:35 lctwprddb01 sendmail[1616]: m3TJJZ4k001616: to=[email protected], ctladdr=oracle (500/500), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30109, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (m3TJJZhB001617 Message accepted for delivery)
    Apr 29 16:04:52 lctwprddb01 sendmail[1422]: m3TIP6LJ031388: to=<[email protected]>, ctladdr=<[email protected]> (500/500), delay=01:39:46, xdelay=00:48:01, mailer=esmtp, pri=120423, relay=cluster2a.us.messagelabs.com. [216.82.249.211], dsn=4.0.0, stat=Deferred: Connection timed out with cluster2a.us.messagelabs.com.
    Apr 29 16:07:36 lctwprddb01 sendmail[1619]: m3TJJZhB001617: to=<[email protected]>, ctladdr=<[email protected]> (500/500), delay=00:48:01, xdelay=00:48:01, mailer=esmtp, pri=120425, relay=cluster2a.us.messagelabs.com. [216.82.248.44], dsn=4.0.0, stat=Deferred: Connection timed out with cluster2a.us.messagelabs.com.
    Apr 29 16:07:52 lctwprddb01 sendmail[1627]: m3TILs2r031176: to=<[email protected]>, ctladdr=<[email protected]> (500/500), delay=01:45:58, xdelay=00:48:01, mailer=esmtp, pri=120429, relay=cluster2a.us.messagelabs.com. [216.82.248.45], dsn=4.0.0, stat=Deferred: Connection timed out with cluster2a.us.messagelabs.com.

  • How to send SMS from a servlet  to a mobile phone

    How to send SMS from a servlet to a mobile phone what are the things i have to do.......
    very urgent..

    Hi, please read this:
    http://forum.java.sun.com/thread.jspa?threadID=345296&messageID=2608297
    Found on the very forum with the search function ;)

Maybe you are looking for

  • How to add cost center programatically?

    I have a program that must create one or more entries in infotype 15 but I also have to assign the cost center.  I've played around with doing it manually in PA30 and you have to save the 15 record first and then go to a different screen (via the men

  • Constant message:"the server responded with an error"??

    how do i fix a recurrent message that interferes with the use of my calendar...the message flashes constantly and says as a title:  "the server responded with an error" next it says "access to apple open training in "home" in account "icloud" is not

  • Need help with iPhoto! Can't add images!

    Hello all. Just sarted using iPhoto '05 and amm trying to transfer photos from my camera and a CDR from a windows PC. It says: The following files could not be imported (they may be an unrecognized file type or the files may not contain valid data).

  • MRP - Purchase Order recommended

    Hello, Is it possible for MRP to recommend Purchase Orders to be created per warehouse(based on minimum inventory levels per warehouse). Currently, MRP recommends one Purchase Order with a total of the qty's across all the warehouses. e.g. Warehouse

  • Applet works with IE8 but aborts with Firefox 3.6.3

    This link starts an Applet (a funny St.Valentine's one) that works perfect with IE8. Same link does some initial steps from Firefox 3.6.3 but aborts. Looking into Java Console it errors with ... but as I said, it works PERFECT with IE8!!! What's the