Another Newb seeks help

First of all, I want to make clear I just want to start with basics, oh and I am using this as a hobby for now :D.
All of these crazy tutorials are going way too fast or are actually skipping important parts, like the propper code for pointing out the variables or whatever they are that I am going to use.
So I was wondering if you could tell me the code, point me the guide out or actually point me to a much slower simpler tutorial, I'd greatly appreciate it.
My current situation+_
This language is very confusing, I can barely programs that write one single text (From the Hello World Tutorial).
I am trying to make a simple addition program to start off, but I can't find code that points out variables.
And please don't be harsh, I am not sure if this is a serious community, but it is for beginners so...

DeltaGeek wrote:
Until you understand important Java concepts like the classpath and packages, you should stay away from IDEs like Netbeans or Eclipse. All you need is a commandline and a good text editor.
As for a book for beginners, I recommend Thinking In Java by Bruce Eckel. The 3rd edition is available for free and although it's not the most current version, covers the fundamentals you need to understand.I like Bruce Eckel and his book, but I'm not sure I'd recommend it as the best intro text.
If the OP is having trouble with Hello World I'm not sure that TIJ is the best choice.
%

Similar Messages

  • A newbie seeking help... hard drive

    I recently took my computer to the apple store and was told that my main hard drive on my powermac g4 went out(western digital 800BB 80gb). I am looking for a replacement but i am completly overwhelmed by all the different harddrives that are out there. What is the best replacement harddrive that i can get for my g4? I mainly use my g4 for video editing. I have also come to an understanding that there is a 128gb limit on some of the g4s. How do I know if i have that limit on my G4? Any help will be highly appreciated seeing how i have been pulling my hair out over this.

    Look at these links.
    What Macs natively support large IDE drives? (over 128GB formatted)
    http://forums.xlr8yourmac.com/action.lasso?-database=faq.fp3&layout=FaqList&-res ponse=answer.faq.lasso&-recordID=34188&-search
    How Big a Hard Drive Can I Put in My iMac, eMac, or Power Mac?
    http://lowendmac.com/macdan/05/1024.html
    Using 128 GB or Larger ATA Hard Drives
    http://support.apple.com/kb/HT2544
    The Power Mac Storage FAQ
    http://forums.macnn.com/65/power-mac-and-mac-pro/246391/the-power-mac-storage-fa q/
    Possible Alternative - SpeedTools ATA Hi-Cap Support Driver: Allows the use of extended capacity ATA drives (drives greater than 128 Gigabytes in size) on older (Pre Mirrored Door) G4 and G3 Macintoshes running MacOS X versions 10.2 and later. Cost $24.95
    http://www.speedtools2.com/ATA6.html
    Possible Alternative 2 - Larger than 128GB drives can be used by adding a PCI ATA/100 or ATA/133 controller card, one which is 48-bit LBA compliant; or by adding a PCI SATA controller card and using SATA drives.
    You can put any size HD in an external firewire enclosure & have it bootable.
     Cheers, Tom

  • Newbie Seeking Help With Array Output!

    Hey all, I'm new here, so here goes nothing! :) I'm in my first programming class at college, and we need to output multiple arrays. We're using JTextAreas and I'm not sure how I should go about this, but this is what I have so far:
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class Application1
    public Application1()
    String name[]={"Mary","John","William","Debbie","Ralph"};
    int temp[]={34,24,78,65,45,100,90,97,56,89,78,98,74,90,98,24,45,76,89,54,12,20,22,55,6};
    int [][]scores=new int[8][8];
    float []avg=new float[5];
    char []lettergrade={'F','F','F','F','F'}; //Initialized at "F" and replaced by their actual grade
    String out="";
    move_score(temp,scores);
    tot_hi_low(scores);
    average(scores,avg,lettergrade); //Calculates Average and Letter Grade
    graph(scores,avg);
    JTextArea outarea=new JTextArea(8,8); //Output
    out+="Name\t"+"Test1\t"+"Test2\t"+"Test3\t"+"Test4\t"+"Final\t"+"Total\t"+"High\t"+"Low\t"+scores;
    outarea.setText(out);
    JOptionPane.showMessageDialog(null,outarea);
    public void move_score(int temporary[],int sc[][])
    int c=0;
    for(int a=0;a<=4;a++) //Moves values of "temp" into 2D array "scores"
    for(int b=0;b<=4;b++)
    sc[a]=temporary[c];
    c++;
    public void tot_hi_low(int [][]score)
    int d=100; //Low Variable
    int e=-1; //High Variable
    for(int r=0;r<=4;r++)
    for(int c=0;c<=4;c++)
    score[r][5]+=score[r][c]; //Total for Columns
    score[5][r]+=score[c][r]; //Total for Rows
    if(score[r][c]>e) //High for Columns
    e=score[r][c];
    score[r][6]=e;
    if(score[c][r]>e) //High for Rows
    e=score[c][r];
    score[6][r]=e;
    if(score[r][c]<d) //Low for Columns
    d=score[r][c];
    score[r][7]=d;
    if(score[c][r]<d) //Low for Rows
    d=score[c][r];
    score[7][r]=d;
    public void average(int [][]score,float []avg,char []grade){
    int l=800;
    for(int a=0;a<=4;a++)
    for(int b=0;b<=3;b++)
    if(score[a][b]<l)
    l=score[a][b];
    avg[a]=(score[a][5]-l+score[a][4])/5.0f;
    if(avg[a]>=60) //Assigns Letter Grades
    grade[a]='D';
    if(avg[a]>=70)
    grade[a]='C';
    if(avg[a]>=80)
    grade[a]='B';
    if(avg[a]>=90)
    grade[a]='A';
    public void graph(int [][]score,float []average){
    //DECLARE EVERYTHING HERE
    //DECLARE ARRAYS
    public static void main(String args[]){
    Application1 app=new Application1();
    System.exit(0);

    Ah sorry about that; like I said I'm fresh off the 'coding' boat. What I meant to ask in my original post is: "Could someone show me an example of how I could get arrays into output?" I am definately not looking for someone to do my work for me, but I am at a dead end, and would appreciate any examples or even tips! Here is what I have:
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class Application1
    public Application1()
    String name[]={"Mary","John","William","Debbie","Ralph"};
    int temp[]={34,24,78,65,45,100,90,97,56,89,78,98,74,90,98,24,45,76,89,54,12,20,22,55,6};
    int [][]scores=new int[8][8];
    float []avg=new float[5];
    char []lettergrade={'F','F','F','F','F'}; //Initialized at "F" and replaced by their actual grade
    String out="";
    move_score(temp,scores);
    tot_hi_low(scores);
    average(scores,avg,lettergrade); //Calculates Average and Letter Grade
    graph(scores,avg);
    JTextArea outarea=new JTextArea(8,8); //Output
    out+="Name\t"+"Test1\t"+"Test2\t"+"Test3\t"+"Test4\t"+"Final\t"+"Total\t"+"High\t"+"Low\n"+scores;
    outarea.setText(out);
    JOptionPane.showMessageDialog(null,outarea);
    public void move_score(int temporary[],int sc[][])
    int c=0;
    for(int a=0;a<=4;a++) //Moves values of "temp" into 2D array "scores"
    for(int b=0;b<=4;b++)
    sc[a]=temporary[c];
    c++;
    public void tot_hi_low(int [][]score)
    int d=100; //Low Variable
    int e=-1; //High Variable
    for(int r=0;r<=4;r++)
    for(int c=0;c<=4;c++)
    score[r][5]+=score[r][c]; //Total for Columns
    score[5][r]+=score[c][r]; //Total for Rows
    if(score[r][c]>e) //High for Columns
    e=score[r][c];
    score[r][6]=e;
    if(score[c][r]>e) //High for Rows
    e=score[c][r];
    score[6][r]=e;
    if(score[r][c]<d) //Low for Columns
    d=score[r][c];
    score[r][7]=d;
    if(score[c][r]><d) //Low for Rows
    d=score[c][r];
    score[7][r]=d;
    public void average(int [][]score,float []avg,char []grade){
    int l=800;
    for(int a=0;a<=4;a++)
    for(int b=0;b<=3;b++)
    if(score[a]><l)
    l=score[a];
    avg[a]=(score[a][5]-l+score[a][4])/5.0f;
    if(avg[a]>=60) //Assigns Letter Grades
    grade[a]='D';
    if(avg[a]>=70)
    grade[a]='C';
    if(avg[a]>=80)
    grade[a]='B';
    if(avg[a]>=90)
    grade[a]='A';
    public void graph(int [][]score,float []average){
    public static void main(String args[]){
    Application1 app=new Application1();
    System.exit(0);
    }I want to get my scores array into my JTextArea, but the array isn't displaying as I intended it to. Any help would be incredibly useful!

  • Failing to install windows 8.1/7/ any kind of windows on my imac,seeking help foreal

    Hey there. It's going to be a long post since I've messed with it for 4 days, and still no success even in the time I'm currently writing this message - the furthest I got is having tons of crashes and black screens. And now I can't even reclaim my lost harddrive space (resizing partitions doesn't work anymore).
    I'll start with that I already tried to make Bootcamp work about a year ago, but then quit it out of no success and reverted all the changes. But this time my situation is different - I'm pretty sure something messed up in the middle and now I'm seeking help and answers to my questions. And here we go - one bright day I decided to install Windows 8.1 as a secondary boot system on my iMac for personal reasons. I went and added Bootcamp's ability to make a bootable USB on my mac by changing the plist file, and finally had the option to do so. Then got an ISO of Windows 8.1's installation, burned it to a DVD with disk utility (on the lowest speed) and here's already where my problems started. The disk failed to burn for some unknown reason, even though when I compared the contents it had the exactly same thing in both the ISO and the DVD. Weird isn't it? I still tried to boot it - and guess what? the DVD booted but it had the non-EFI interface (huge and pixelated). Anyway when I pressed next I had some weird driver errors, so I decided to use an USB instead (1 DVD wasted so far). I used Bootcamp to create a bootable USB with drivers and went to boot it. The USB booted perfectly fine under the name "EFI Boot" and then I reached the partitions screen.. Obviously I had weird errors again (GPT/MBR stuff). One tutorial on the web suggested creating a partition for the windows rather than using the Bootcamp pre-made one. I followed it by booting my main system, and using disk utility to delete the Bootcamp partition. Later on I booted again to the installation and created a new partition from the partitions screen. Windows created two partitions - a Microsoft reserved partition, and the secondary partition which is used for the windows files. After some time the windows finally booted for the first time. It took pretty long but went smooth - until it finally booted. Since here the problems returned - the Windows crashed every 5 minutes from a driver error (that's AFTER I installed the Apple drivers right after the system finished booting), I googled it and followed various tuts but it still wasn't fixed. I decided to quit using 8 since I liked 7 more anyway (I currently have it installed as a virtual system in Parallels), so I decided to install 7 instead of 8 since I never had any issues with it. Booted up my main system again - went to Bootcamp Assistant, USB creation. ISO file + drivers on the USB. I reboot. Holding ALT and... my mac can't even see the USB drive! Luckily I had 4 more installations (various ISOs) of Win 7, so I decided to try them. I tried ALL the Installations I in none of them my mac could see the USB drive (I wonder how my USB survived all this rewriting on it...) Again to Google we go. I researched a bit and realized that I'm missing a file called xboot64.efi in the "efi/boot" folder, which can be taken from windows. I tried extracting it from install.wim but none of my archiving apps could open it (I tried Unarchiver, Keka, 7zX, terminal's unrar command and more, none could!). I also realized my Win 8 installation had this file so I added it to the Win 7 USB. Now my mac could see the USB in the boot screen - and it booted. I saw the "loading files" screen, and after one minute of it... black screen. I waited 10 minutes. Then 30. An hour. Still a pure black screen. I thought something is wrong with my file, and read that this file is also found in an already installed Win 7, so I went to parallels and took it from here, then added it to my installation. Again my mac could see the USB, but still no luck. When I pressed enter to boot from it, nothing happened as if the boot screen was stuck - the drive was selected but it didn't do anything. I waited long time again and decided to stop waiting. I tried to burn another DVD, this time with Titanium Toast. Again the DVD failed to burn, and when I checked the content, it was the same as the ISO I tried to burn from (official ISO from Microsoft of Windows 7 Ultimate SP1). I went and booted it - this time I saw again "Windows" and "EFI Boot"in the boot screen, both with a disc icon. "EFI Boot" didn't load like the usb previously (loads forever), so I booted the "Windows" thing. The setup loaded, and finally I could see the installation window. Reached the partitions screen... and here the problems returned once again. An error along the lines of that Windows can't be installed on a GPT partition. Some tuts on YouTube and in Google suggested to simply format the problematic partition. And so I did - yet the problem wasn't fixed. After messing with all that for one more day - trying different installations, ways to boot the USB and DVDs, formatting the Windows partition etc, I decided it's time to stop messing with it since luck definitely isn't in my side when it comes to Bootcamp (and for the record, I never had any issues with OSX, but when I tried adding windows to it.. eh, you can guess.) I booted back to my normal system, and went to disk utility to delete the partitions. The Windows partition was deleted easily, but the Microsoft reserved one.. not so quite. (by the way when I boot into it I get a Win 8.1 error screen that tells me to repair the system, since I formatted the Win partition itself). Until this very moment I still can't delete the reserved partition and return my beloved 30gb that I lost because of the resizing (I can't resize my Mac HD partition).
    I'm really desperate now. I tried everything and the furthest I got is getting a broken Windows 8.1 (which I deleted later), destroying 5 DVDs, shortening the lifespan of my USB drive, and googling errors the whole day for 4 days in a row. And now I can't even return my lost 30gb even after I decided to quit it. Please help or suggest me what to do, whether it's about how to successfully install Win 7 or to return my lost gigabytes, any kind of help is appreciated. If you managed to read so far, thank you for reading my post and I hope you'll be able to assist me and get me out of this situation.

    Read the Boot Camp Help first. Boot Camp does not yet support Windows 8.1 http://windows.microsoft.com/en-US/windows-8/system-requirements. If you insist on installing 8.1 use a virtual machine like parallels, Fusion, or VirtualBox.
    http://www.apple.com/support/bootcamp/

  • MacBook - Newbie: Need help on printing wirelessly to XP shared printer

    MacBook - Newbie: Need help on printing to XP shared printer
    Bear with me please. I read tons of articles on this but somehow as a newbie to MAC (girlfriends sick daughter), I am missing something. 10.5.2
    Currently, she can print directly if we plug in the HP Deskjet printer directly via USB to the MACBook. No problem.
    When we first got the MACBOOK I tried setting up the MACBOOK wirelessly to recognize the workgroup where the printer was attached via USB to the Windows XP PC. However it printed out garbage since I did not know there was a difference between XP printing and MAC (Gutenberg/gimp printing/drivers).
    Now I know there is a difference.
    But in reading various instructions, I no longer can find how to connect the MAC to the Windows workgroup. Note we do have a printer set up currently as USB-HP Deskjet on the Macbook (not sure I need to delete it yet).
    I went to System Preferences on MACBOOK and clicked on printers, more printers. In the drop down box was CANON, APPLETALK, IP HP printing and Firewire. There was no WINDOWS selection as I saw in other online web instructions.
    So not sure how to proceed to find a way to:
    1. Connect to Windows workgroup (click on what exactly), step by step please!!
    2. Add correct HP Deskjet 5490 printer (perhaps there is one with Gutenberg or perhaps I need Gutenprint-really not sure what I am talking about)
    Thanks so much in advance. Fiancé's kid has had her cancer recur in a different place and someone was nice enough to buy her a MACBOOK as a gift.
    Sincerely
    Peter

    ccarbery wrote:
    OK...I figured it out...no need to reply.  I noticed that there was another Protocol to use to set up the printer on the Mac, I was using LPD, so I switched it to HP Jet Direct-socket, and it prints fine...thanks.  I am curious as to why LPD wouldn't work; if anyone has that answer I would like to know...thanks
    Any chance of posting the Protocol you used to connect to your printer with your laptop?  I'm have the exact same problem printing from my MB.  Same error message "..is busy".

  • Another Newbie

    Hey guys
    As you can see of the subject im just another newbie who needs help +)
    Well...here i am newbie to java programming who extremely wants to now it and be able to manage it +)
    My understanding that all that i need i can get from books. So is there any of you guys can give me an advise which book is better to start off. There is a huge amount of books on the market and i feel a bit lost.. which one?? +)
    Or there is better option for me to learn Java??
    Cheers

    If you can get the assistance of someone who really knows Java in person, that will be your most valuable resource. After that, the online Java tutorials, and any of the books recommended are good starting points.
    If you've already got some sort of programming background, I'd personally recommend reading "The Java Programming Language" as a way to get a thorough grounding in the fundamentals of the language, then perhaps the Bruce Eckels book "Thinking in Java" (which is available online).
    After that, your most valuable resources will be the JavaDoc APIs which you can access online, or download.
    Finally, if you choose to ask questions here:
    * Remember to search the forums for answers first.
    * Try to include code to illustrate the problem you're encountering
    * Always include all the error messages (including compiler errors).
    Dave.

  • I got this message:" Software Update Update failed Something is trying to trick Firefox into accepting an insecure update. Please contact your network provider and seek help." What on earth is this about? I am not computer savy.

    I got this message:" Software Update Update failed Something is trying to trick Firefox into accepting an insecure update. Please contact your network provider and seek help." What on earth is this about? I am not computer savy.

    taken from https://support.mozilla.com/en-US/questions/826858:
    ''This issue can be caused by the presence of leftover files in the Firefox program folder (defaults\pref) like a file all.js or firefox.js''
    ''Download a fresh Firefox copy and save the file to the desktop.
    Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html ''
    ''Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.''
    ''Do not remove personal data if you uninstall the current version.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.''
    ''Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.''
    ''If the problem persists See also:
    https://support.mozilla.com/en-US/questions/815130?page=2#answer-185385''
    Check and tell if its working.

  • I have photoshop elements 11 installed on my desktop pc, I want to install it on my laptop as well, I read that it can be installed on two systems, but I get a message taht the redemption code has been used by another ID, please help

    I have photoshop elements 11 installed on my desktop pc, I want to install it on my laptop as well, I read that it can be installed on two systems, but I get a message taht the redemption code has been used by another ID, please help

    A redemption code can only be redeemed once.  It is used to acquire a serial number. The serial number is what you need to activate the installed software.  If you did not keep the serial number when you first installed, you might still be able to find it in your Adobe account online if you registered the software.

  • What is the best way to remotely access my sister in laws Mac who lives in another city to help her with her computer problems?

    as stated above
    What is the best way to remotely access my sister in laws Mac who lives in another city to help her with her computer problems?

    The best way? Get her to bring it to you, especially if she makes good cakes.
    Apples Back to my Mac isn't really suitable for this - it is designed for a single person who wants their Apple ID on the system. It would mean she would have to share hers with you & you would also have to setup her Apple ID on your Mac - it is messy & causes trouble with iCloud, iTunes etc.
    You can try Messages if she is able to begin a session with you, see the 'invite to share screen' in the menus, weirdly you need to use a service that isn't from Apple.
    Messages (Mavericks): Share your screen
    It may be better if you to setup LogMeIn or GoToMyPC. They should 'dial out' & maintain a constant connection so you can login whenever the Mac is powered up. It won't, require a human to initiate the process at the other end, just be aware that the router may cause issues depending on what is configured, you may need settings to enable automatic port forwarding - it really depend on which option you choose.

  • I'm getting an error message from Firefox that says, "Something is trying to trick Firefox into accepting an insecure update. Please contact your network provider and seek help."

    I'm getting an error message from Firefox that says, "Something is trying to trick Firefox into accepting an insecure update. Please contact your network provider and seek help." Do you know what is going on here--what this problem could be? (I do have the latest Firefox version already installed. I have previously received Firefox error messages that say "Firefox Update Failed." However, I already had the latest Firefox version installed when I received those error messages.)

    Apparently this occurs when Firefox has problems with security certificates. There have been a few questions about this. I will try to get advice about this.
    Apparently you are using Internet Explorer 9 (From your system details). Do you have Google Updater plugin installed on Firefox ?
    (That been implicated in this sort of problem by one poster, and some users with the problem do have Google Updater, but some do not)

  • I just got a SSD for my late 2011 mp but I don't know how to change it, can I seek help in the Apple store?

    I want to replace the HDD with SSD in my late 2011 Macbook pro, the question is I dont tools and knowledge about this job. So I am wondering if i can seek help from local Apple store?

    Good choice! I have one installed in my 13" MBP. The installation is not too difficult, but it is not trivial. I'm pretty experienced with this stuff so just take your time and carefully follow the instructions. You'll be working with tiny little screws that are easy to drop and/or lose. I suggest using magnetic tipped tools. There are a couple of screws in some tight areas that are a little difficult to remove.
    Be particularly careful to check all the snap-on cablings when you reassemble. There is one you don't remove during installation that is near the top part of the optical drive and covered over. When I was tugging on the drive to remove it I apparently popped the cable under the cover. Turned out it was for the WiFi and BT. I had to disassemble the back cover and look hard for something I couldn't see. I just happened to press on the covered area where the cable connected and heard the snap of it reconnecting. If it weren't for that I would have never figured out why my WiFi and BT stopped working!

  • I have a MacBook Pro and the batter icon has an "X" in it.  I attempted resetting the SMC but it's still there. Not sure if the SMC didn't work or I have another problem.  Help?

    I have a MacBook Pro and the batter icon has an "X" in it.  I attempted resetting the SMC but it's still there. Not sure if the SMC didn't work or I have another problem.  Help?

    You can try the SMC again.
    http://support.apple.com/kb/HT3964
    Follow directions for a battery you should not remove yourself
    You can also try a NVRAM/PRAM reset (at the bottom of the same page in the above link
    Also hold the OPTION key and click on the Apple logo in the menu bar and click on system information, in the left column select power. Under the battery info see if it is charging (with the power adapter  plugged in) as well as the health info (condition should be normal), and battery installrd (should be YES)
    If other than these are different you may want to take it in to a Genius bar for a full diagnosis they will do that for dree.
    Hope this helps

  • Seek help!redhat as4 installation oracle 10g configure sysctl.config error!

    [root@localhost ~]# /sbin/sysctl -p
    net.ipv4.ip_forward = 0
    net.ipv4.conf.default.rp_filter = 1
    net.ipv4.conf.default.accept_source_route = 0
    kernel.sysrq = 0
    kernel.core_uses_pid = 1
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    kernel.shmmni = 4096
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    [root@localhost ~]# /sbin/sysctl -a | grep shm
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe3'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe2'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe1'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe0'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe'
    error: unknown error 22 reading key 'net.ipv6.route.flush'
    error: unknown error 22 reading key 'net.ipv4.route.flush'
    vm.hugetlb_shm_group = 0
    error: unknown error 22 reading key 'fs.binfmt_misc.register'
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    [root@localhost ~]#
    seek help!!!! help!!!

    [root@localhost ~]# /sbin/sysctl -e -a | grep shm
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe3'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe2'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe1'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe0'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe'
    error: unknown error 22 reading key 'net.ipv6.route.flush'
    error: unknown error 22 reading key 'net.ipv4.route.flush'
    vm.hugetlb_shm_group = 0
    error: unknown error 22 reading key 'fs.binfmt_misc.register'
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    You have new mail in /var/spool/mail/root
    [root@localhost ~]# /sbin/sysctl -e -a | grep shm
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe3'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe2'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe1'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe0'
    error: unknown error 0 reading key 'dev.parport.parport0.autoprobe'
    error: unknown error 22 reading key 'net.ipv6.route.flush'
    error: unknown error 22 reading key 'net.ipv4.route.flush'
    vm.hugetlb_shm_group = 0
    error: unknown error 22 reading key 'fs.binfmt_misc.register'
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    [root@localhost ~]#
    From [email protected] Thu Dec 22 04:02:05 2005
    Return-Path: <[email protected]>
    Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
         by localhost.localdomain (8.13.1/8.13.1) with ESMTP id jBLK25Av010183
         for <[email protected]>; Thu, 22 Dec 2005 04:02:05 +0800
    Received: (from root@localhost)
         by localhost.localdomain (8.13.1/8.13.1/Submit) id jBLK2353010181
         for root; Thu, 22 Dec 2005 04:02:03 +0800
    Date: Thu, 22 Dec 2005 04:02:03 +0800
    From: root <[email protected]>
    Message-Id: <[email protected]>
    To: [email protected]
    Subject: LogWatch for localhost.localdomain
    ################### LogWatch 5.2.2 (06/23/04) ####################
    Processing Initiated: Thu Dec 22 04:02:02 2005
    Date Range Processed: yesterday
    Detail Level of Output: 0
    Logfiles for Host: localhost.localdomain
    --------------------- Cron Begin ------------------------
    **Unmatched Entries**
    STARTUP (V5.0)
    STARTUP (V5.0)
    ---------------------- Cron End -------------------------
    --------------------- Kernel Begin ------------------------
    WARNING: Kernel Errors Present
    vesafb: probe of vesafb0 failed with error -6...: 2 Time(s)
    ---------------------- Kernel End -------------------------
    --------------------- pam_unix Begin ------------------------
    crond:
    Unknown Entries:
    session closed for user root: 217 Time(s)
    session opened for user root by (uid=0): 217 Time(s)
    gdm:
    Unknown Entries:
    authentication failure; logname= uid=0 euid=0 tty=:0 ruser= rhost= user=root: 1 Time(s)
    sshd:
    Authentication Failures:
    unknown (211.93.8.116): 11 Time(s)
    mysql (211.93.8.116): 1 Time(s)
    oracle (211.93.8.116): 1 Time(s)
    root (211.93.8.116): 1 Time(s)
    system-install-packages:
    Unknown Entries:
    auth could not identify password for [root]: 2 Time(s)
    ---------------------- pam_unix End -------------------------
    --------------------- Connections (secure-log) Begin ------------------------
    New Users:
    useradd (oracle)
    New Groups:
    useradd (oracle)
    **Unmatched Entries**
    usermod[2945]: change user `oracle' password
    userhelper[3909]: pam_timestamp: updated timestamp file `/var/run/sudo/root/unknown'
    userhelper[3910]: running '/usr/sbin/system-config-network' with root privileges on behalf of 'root'
    userhelper[4298]: pam_timestamp: updated timestamp file `/var/run/sudo/root/unknown'
    userhelper[4299]: running '/usr/share/system-config-users/system-config-users' with root privileges on behalf of 'root'
    userhelper[7961]: pam_timestamp: updated timestamp file `/var/run/sudo/root/unknown'
    userhelper[7962]: running '/usr/sbin/system-config-packages' with root privileges on behalf of 'root'
    userhelper[9157]: pam_timestamp: updated timestamp file `/var/run/sudo/root/unknown'
    userhelper[9158]: running '/usr/sbin/system-config-packages' with root privileges on behalf of 'root'
    userhelper[9163]: pam_timestamp: updated timestamp file `/var/run/sudo/root/unknown'
    userhelper[9164]: running '/usr/sbin/system-config-packages' with root privileges on behalf of 'root'
    ---------------------- Connections (secure-log) End -------------------------
    --------------------- SSHD Begin ------------------------
    SSHD Started: 2 Time(s)
    Failed to bind:
    0.0.0.0 port 22 (Address already in use) : 2 Time(s)
    Failed logins from these:
    mysql/password from ::ffff:211.93.8.116: 1 Time(s)
    oracle/password from ::ffff:211.93.8.116: 1 Time(s)
    root/password from ::ffff:211.93.8.116: 1 Time(s)
    **Unmatched Entries**
    Invalid user fluffy from ::ffff:211.93.8.116
    Failed password for invalid user fluffy from ::ffff:211.93.8.116 port 50249 ssh2
    Invalid user admin from ::ffff:211.93.8.116
    Failed password for invalid user admin from ::ffff:211.93.8.116 port 50738 ssh2
    Invalid user test from ::ffff:211.93.8.116
    Failed password for invalid user test from ::ffff:211.93.8.116 port 51217 ssh2
    Invalid user guest from ::ffff:211.93.8.116
    Failed password for invalid user guest from ::ffff:211.93.8.116 port 51434 ssh2
    Invalid user webmaster from ::ffff:211.93.8.116
    Failed password for invalid user webmaster from ::ffff:211.93.8.116 port 51651 ssh2
    Invalid user library from ::ffff:211.93.8.116
    Failed password for invalid user library from ::ffff:211.93.8.116 port 52584 ssh2
    Invalid user info from ::ffff:211.93.8.116
    Failed password for in
    valid user info from ::ffff:211.93.8.116 port 52810 ssh2
    Invalid user shell from ::ffff:211.93.8.116
    Failed password for invalid user shell from ::ffff:211.93.8.116 port 53024 ssh2
    Invalid user linux from ::ffff:211.93.8.116
    Failed password for invalid user linux from ::ffff:211.93.8.116 port 53261 ssh2
    Invalid user unix from ::ffff:211.93.8.116
    Failed password for invalid user unix from ::ffff:211.93.8.116 port 53491 ssh2
    Invalid user webadmin from ::ffff:211.93.8.116
    Failed password for invalid user webadmin from ::ffff:211.93.8.116 port 53715 ssh2
    RSA1 &#38335;&#57790;&#27537;&#37922;&#29112;&#22426; succeeded
    RSA &#38335;&#57790;&#27537;&#37922;&#29112;&#22426; succeeded
    DSA &#38335;&#57790;&#27537;&#37922;&#29112;&#22426; succeeded
    ---------------------- SSHD End -------------------------
    ------------------ Disk Space --------------------
    /dev/mapper/VolGroup00-LogVol00
    /dev/hda1 3.9G 47M 3.7G 2% /boot
    ###################### LogWatch End #########################
    From [email protected] Fri Dec 23 04:02:03 2005
    Return-Path: <[email protected]>
    Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
         by localhost.localdomain (8.13.1/8.13.1) with ESMTP id jBMK23vb020633
         for <[email protected]>; Fri, 23 Dec 2005 04:02:03 +0800
    Received: (from root@localhost)
         by localhost.localdomain (8.13.1/8.13.1/Submit) id jBMK23wD020631
         for root; Fri, 23 Dec 2005 04:02:03 +0800
    Date: Fri, 23 Dec 2005 04:02:03 +0800
    From: root <[email protected]>
    Message-Id: <[email protected]>
    To: [email protected]
    Subject: LogWatch for localhost.localdomain
    ################### LogWatch 5.2.2 (06/23/04) ####################
    Processing Initiated: Fri Dec 23 04:02:02 2005
    Date Range Processed: yesterday
    Detail Level of Output: 0
    Logfiles for Host: localhost.localdomain
    --------------------- Init Begin ------------------------
    Re-execs of init: 1 times
    ---------------------- Init End -------------------------
    --------------------- pam_unix Begin ------------------------
    crond:
    Unknown Entries:
    session closed for user root: 458 Time(s)
    session opened for user root by (uid=0): 458 Time(s)
    sshd:
    Authentication Failures:
    unknown (fw-25-15-a8.bta.net.cn): 6 Time(s)
    oracle (82.78.172.155): 3 Time(s)
    root (fw-25-15-a8.bta.net.cn): 3 Time(s)
    unknown (202.29.52.44): 1 Time(s)
    Unknown Entries:
    2 more authentication failures; logname= uid=0 euid=0 tty=ssh ruser= rhost=82.78.172.155 user=oracle: 2 Time(s)
    6 more authentication failures; logname= uid=0 euid=0 tty=ssh ruser= rhost=82.78.172.155 user=oracle: 1 Time(s)
    service(sshd) ignoring max retries; 7 > 3: 1 Time(s)
    ---------------------- pam_unix End -------------------------
    --------------------- sendmail Begin ------------------------
    Bytes Transferred: 9906
    Messages Sent: 2
    Total recipients: 2
    ---------------------- sendmail End -------------------------
    --------------------- SSHD Begin ------------------------
    Failed logins from these:
    oracle/password from ::ffff:82.78.172.155: 3 Time(s)
    root/password from ::ffff:202.108.25.15: 3 Time(s)
    **Unmatched Entries**
    Invalid user test from ::ffff:202.108.25.15
    Failed password for invalid user test from ::ffff:202.108.25.15 port 49076 ssh2
    Invalid user guest from ::ffff:202.108.25.15
    Failed password for invalid user guest from ::ffff:202.108.25.15 port 49212 ssh2
    Invalid user admin from ::ffff:202.108.25.15
    Failed password for invalid user admin from ::ffff:202.108.25.15 port 49318 ssh2
    Invalid user admin from ::ffff:202.108.25.15
    Failed password for invalid user admin from ::ffff:202.108.25.15 port 49448 ssh2
    Invalid user user from ::ffff:202.108.25.15
    Failed password for invalid user user from ::ffff:202.108.25.15 port 49620 ssh2
    Invalid user test from ::ffff:202.108.25.15
    Failed password for invalid user test from ::ffff:202.108.25.15 port 50275 ssh2
    Invalid user test from ::ffff:202.29.52.44
    Failed password for invalid user test from ::ffff:202.29.52.44 port 2356 ssh2
    ---------------------- SSHD End -------------------------
    ------------------ Disk Space --------------------
    /dev/mapper/VolGroup00-LogVol00
    /dev/hda1 3.9G 47M 3.7G 2% /boot
    ###################### LogWatch End #########################
    Message was edited by:
    user475340

  • HT201272 Hello, I purchased pages yesterday and I took it off of my computer but accidentally took it off my purchases section in the app store. Now, if I go back to the pages site, it asks me to pay another 19.99. help! I didn't even get to use it.

    Hello, I purchased pages yesterday and I took it off of my computer but accidentally took it off my purchases section in the app store. Now, if I go back to the pages site, it asks me to pay another 19.99. help! I didn't even get to use it.

    There is nothing wrong with the OS update.
    Delete ALL your email accounts.
    Restart Playbook
    Put the accounts back and ensure they are all set with PUSH ON.  Manual (push off) will burn battery.
    Similarly delete your wifi connections and add back when required. 
    Turn off wifi is not connected to wifi. 
    Any "hunting for connection" in email or wifi will burn up battery.

  • Seeking help with software upgrade questions for my PowerBook G4

    I am seeking help/advice for a very low tech guy. I upgraded my PowerBook G4 (ancient I know but I have trouble with our thow away society), to Leopard 10.5.2. However, my iDVD no longer works. I plan on upgrading to iLife'08, but based on the system requirements, I am not certain all of the features (i.e. iMovie'08) will work on my older processor. Before I upgrade to iLife, can anyone tell me if I should do it and if they will work on my all the features will work on my PowerBook G4?

    Many prefer iLife'06 to '08, but we went from '05 to '08.
    You are correct in that iMovie'08 will not run on your Book, but when you install iLife'08 you are given the opportunity to download iMovie'06 for free.
    I can't vouch for it fixing your iDVD however.
    Joe

Maybe you are looking for

  • Release Strategy for SA/Contract/PO

    Hi friends, Should we have different release groups and release codes in contracting/ SA/ PO. Because... I have maintained 4 characteristics in release strategy for PO _[ Comp Co, plant, porg, total net order value]. But i want to maintan only 2 char

  • Laptop printing via wireless to HP Laserjet M1217nfw without a wireless router.

    I want to print from a laptop via wireless to a HP Laserjet M1217nfw. The location means that there is no wireless router involved. The manual suggests that there are two possible methods if no wireless router is available. The first one is an ad-hoc

  • Software-Update doesn't run Installations anymore

    Hi there, after I installed Snow Leopard, a few days later a wanted to update to iTunes9 and the new securitiy update. The software updates finds all the updates and the are listed on the screen but when I press install and accept terms and condition

  • Linking pages

    Hello, I know this is a silly question but I guess there is some easy way to do this. I have a table displaying some data from a table, I want a column in that table to link to a details page. For example: ID | Name 1 | Yoda 2 | Luke When the user cl

  • Easy setup for Digibeta?

    I realize this is probably really simple, but: I need to get my sequence out to Digi and every time I try the edit to tape i'm told i have "Incompatible compression settings"? I'm on FCP 6 going to a sony DVW-M2000P through a AJA IO (SD) and i'm usin