Is more security needed with no default getaway?

Hi!
I have base only Arch installation for running one Linux compatible application on it. I wander with two questions.
Do I need to configure through iptables command to get more security or it is unnecessary as I have no default getaway and have route added for two subnets?
If using iptables is addhelpful in my case how can I install iptables (my Arch base installation writes "not found")? I need short instruction.
Thank you!

ralvez wrote:If your system is connected to a network (LAN) and has NO OPEN ports via services, in other words: you are not running a mail service or Apache server, then just enter "ALL:ALL" in /etc/hosts.deny  and that's all you need.
My system is connected to Internet directly. I have forwarded one TCP and one UDP port. My DSL modem does not allow me to prevent inbound traffic by its firewall (it is not possible to forward ports for special IP addresses/subnets, ports are always open for all IPs for inbound traffic) This is the reason I removed default getaway in Arch and added two needed subnets (It helped me really. My system was overloaded with unwanted traffic. Now unwanted traffic flow is stopped)
ralvez wrote:If you want to have ssh access to that box you can add the IP address of the machine you want to allow to connect to that box in /etc/hosts.allow
What do you mean by "ssh access to that box"?
ralvez wrote:but if you want to "push" the boundaries any further I would add a firewall via IPTABLES
Yes, I want more security as possible but do I need it in my case? (I do not know)

Similar Messages

  • More help needed with GUI

    When running the code below,
    I get this error;
    Exception in thread "main" java.lang.IllegalArgumentException: adding a window to a container
         at java.awt.Container.addImpl(Container.java:1022)
         at java.awt.Container.add(Container.java:352)
         at ExamScore.main(ExamScore.java:253)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.:
    If I compile it I get no erros.
    Can someone please help me, will be much appreciated.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.text.*;
    import com.jgoodies.forms.layout.*;
    class ExamScore extends JFrame {
    //public static void main(String[] args) {                    
    // ExamScore window = new ExamScore();
    // window.setVisible(true);
         public ExamScore()
              // JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
              // Generated using JFormDesigner Evaluation license - James Petidis
              ExamScores = new JPanel();
              lblHeading = new JLabel();
              btnEnterGrades = new JButton();
              btnReset = new JButton();
              btnAbout = new JButton();
              lblGradeA = new JLabel();
              txtTotalNumberA = new JTextField();
              txtPercentageA = new JTextField();
              lblGradeB = new JLabel();
              txtTotalNumberB = new JTextField();
              txtPercentageB = new JTextField();
              lblGradeC = new JLabel();
              txtTotalNumberC = new JTextField();
              txtPercentageC = new JTextField();
              lblGradeD = new JLabel();
              txtTotalNumberD = new JTextField();
              txtPercentageD = new JTextField();
              lblGradeF = new JLabel();
              txtTotalNumberF = new JTextField();
              txtPercentageF = new JTextField();
              lblTotalScores = new JLabel();
              txtTotalScores = new JTextField();
              lblMaxScore = new JLabel();
              txtMaxScore = new JTextField();
              lblMinScore = new JLabel();
              txtMinScore = new JTextField();
              lblAvgScore = new JLabel();
              txtAverageScore = new JTextField();
              CellConstraints cc = new CellConstraints();
              //======== ExamScores ========
                   ExamScores.setBackground(new Color(255, 255, 204));
                   // JFormDesigner evaluation mark
                   ExamScores.setBorder(new javax.swing.border.CompoundBorder(
                        new javax.swing.border.TitledBorder(new javax.swing.border.EmptyBorder(0, 0, 0, 0),
                             "JFormDesigner Evaluation", javax.swing.border.TitledBorder.CENTER,
                             javax.swing.border.TitledBorder.BOTTOM, new java.awt.Font("Dialog", java.awt.Font.BOLD, 12),
                             java.awt.Color.red), ExamScores.getBorder())); ExamScores.addPropertyChangeListener(new java.beans.PropertyChangeListener(){public void propertyChange(java.beans.PropertyChangeEvent e){if("border".equals(e.getPropertyName()))throw new RuntimeException();}});
                   ExamScores.setLayout(new FormLayout(
                        "3*(default, $lcgap), 43dlu, 2*($lcgap, default), 2*($lcgap, 57dlu), 2*(default, $lcgap), 2*($lcgap, default)",
                        "13*(default, $lgap), 16dlu, $lgap, default"));
                   //---- lblHeading ----
                   lblHeading.setText(" Exam Score Reader");
                   lblHeading.setFont(new Font("Tahoma", Font.PLAIN, 24));
                   ExamScores.add(lblHeading, cc.xywh(9, 1, 5, 1));
                   //---- btnEnterGrades ----
                   btnEnterGrades.setText("Enter Grades");
                   ExamScores.add(btnEnterGrades, cc.xy(9, 5));
                   //---- btnReset ----
                   btnReset.setText("Reset");
                   ExamScores.add(btnReset, cc.xy(11, 5));
                   //---- btnAbout ----
                   btnAbout.setText("About");
                   ExamScores.add(btnAbout, cc.xy(13, 5));
                   //---- lblGradeA ----
                   lblGradeA.setText("Total Number / Percentage Of A's = ");
                   ExamScores.add(lblGradeA, cc.xy(9, 11));
                   //---- txtTotalNumberA ----
                   txtTotalNumberA.setEditable(false);
                   txtTotalNumberA.setEnabled(false);
                   ExamScores.add(txtTotalNumberA, cc.xy(11, 11));
                   //---- txtPercentageA ----
                   txtPercentageA.setEnabled(false);
                   txtPercentageA.setEditable(false);
                   ExamScores.add(txtPercentageA, cc.xy(13, 11));
                   //---- lblGradeB ----
                   lblGradeB.setText("Total Number / Percentage Of B's = ");
                   ExamScores.add(lblGradeB, cc.xy(9, 13));
                   //---- txtTotalNumberB ----
                   txtTotalNumberB.setEnabled(false);
                   txtTotalNumberB.setEditable(false);
                   ExamScores.add(txtTotalNumberB, cc.xy(11, 13));
                   //---- txtPercentageB ----
                   txtPercentageB.setEnabled(false);
                   txtPercentageB.setEditable(false);
                   ExamScores.add(txtPercentageB, cc.xy(13, 13));
                   //---- lblGradeC ----
                   lblGradeC.setText("Total Number / Percentage Of C's = ");
                   ExamScores.add(lblGradeC, cc.xy(9, 15));
                   //---- txtTotalNumberC ----
                   txtTotalNumberC.setEnabled(false);
                   ExamScores.add(txtTotalNumberC, cc.xy(11, 15));
                   //---- txtPercentageC ----
                   txtPercentageC.setEnabled(false);
                   txtPercentageC.setEditable(false);
                   ExamScores.add(txtPercentageC, cc.xy(13, 15));
                   //---- lblGradeD ----
                   lblGradeD.setText("Total Number / Percentage Of D's = ");
                   ExamScores.add(lblGradeD, cc.xy(9, 17));
                   //---- txtTotalNumberD ----
                   txtTotalNumberD.setEnabled(false);
                   txtTotalNumberD.setEditable(false);
                   ExamScores.add(txtTotalNumberD, cc.xy(11, 17));
                   //---- txtPercentageD ----
                   txtPercentageD.setEnabled(false);
                   txtPercentageD.setEditable(false);
                   ExamScores.add(txtPercentageD, cc.xy(13, 17));
                   //---- lblGradeF ----
                   lblGradeF.setText("Total Number / Percentage Of F's = ");
                   ExamScores.add(lblGradeF, cc.xy(9, 19));
                   //---- txtTotalNumberF ----
                   txtTotalNumberF.setEnabled(false);
                   txtTotalNumberF.setEditable(false);
                   ExamScores.add(txtTotalNumberF, cc.xy(11, 19));
                   //---- txtPercentageF ----
                   txtPercentageF.setEnabled(false);
                   txtPercentageF.setEditable(false);
                   ExamScores.add(txtPercentageF, cc.xy(13, 19));
                   //---- lblTotalScores ----
                   lblTotalScores.setText("Total Number Of Scores =");
                   ExamScores.add(lblTotalScores, cc.xy(9, 21));
                   //---- txtTotalScores ----
                   txtTotalScores.setEditable(false);
                   txtTotalScores.setEnabled(false);
                   ExamScores.add(txtTotalScores, cc.xy(11, 21));
                   //---- lblMaxScore ----
                   lblMaxScore.setText("Highest Score:");
                   ExamScores.add(lblMaxScore, cc.xy(9, 23));
                   //---- txtMaxScore ----
                   txtMaxScore.setEditable(false);
                   txtMaxScore.setEnabled(false);
                   ExamScores.add(txtMaxScore, cc.xy(11, 23));
                   //---- lblMinScore ----
                   lblMinScore.setText("Lowest Score:");
                   ExamScores.add(lblMinScore, cc.xy(9, 25));
                   //---- txtMinScore ----
                   txtMinScore.setEditable(false);
                   txtMinScore.setEnabled(false);
                   ExamScores.add(txtMinScore, cc.xy(11, 25));
                   //---- lblAvgScore ----
                   lblAvgScore.setText("Average Score:");
                   ExamScores.add(lblAvgScore, cc.xy(9, 27));
                   //---- txtAverageScore ----
                   txtAverageScore.setEditable(false);
                   txtAverageScore.setEnabled(false);
                   ExamScores.add(txtAverageScore, cc.xy(11, 27));
              // JFormDesigner - End of component initialization //GEN-END:initComponents
         private JPanel ExamScores;
         private JLabel lblHeading;
         private JButton btnEnterGrades;
         private JButton btnReset;
         private JButton btnAbout;
         private JLabel lblGradeA;
         private JTextField txtTotalNumberA;
         private JTextField txtPercentageA;
         private JLabel lblGradeB;
         private JTextField txtTotalNumberB;
         private JTextField txtPercentageB;
         private JLabel lblGradeC;
         private JTextField txtTotalNumberC;
         private JTextField txtPercentageC;
         private JLabel lblGradeD;
         private JTextField txtTotalNumberD;
         private JTextField txtPercentageD;
         private JLabel lblGradeF;
         private JTextField txtTotalNumberF;
         private JTextField txtPercentageF;
         private JLabel lblTotalScores;
         private JTextField txtTotalScores;
         private JLabel lblMaxScore;
         private JTextField txtMaxScore;
         private JLabel lblMinScore;
         private JTextField txtMinScore;
         private JLabel lblAvgScore;
         private JTextField txtAverageScore;
         // JFormDesigner - End of variables declaration //GEN-END:variables
    public static void main(String[] args)
    ExamScore window = new ExamScore();
    // window.setVisible(true); // you can't make a JPanel visible on its own
    JFrame frame = new JFrame("My Designer"); // JFrames can be made visible on their own
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //so the program will end when the JFrame is closed
    frame.getContentPane().add(window); // *** add our JPanel into the JFrame here
    frame.pack(); // size the panel and frame correctly
    frame.setLocationRelativeTo(null); // place frame in the center
    frame.setVisible(true); // show it all
    Note: I have imported the jgoodies.from.layout by adding the com.jgoodies.forms.layout folder into the directory where the .java file is kept. That seems to be working ok!
    Edited by: Petidiz on Sep 10, 2008 8:00 PM

    I made this change to the end of the coding
    ExamScore window = new ExamScore();
    // window.setVisible(true); // you can't make a JPanel visible on its own
    JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT));//("My Designer"); // JFrames can be made visible on their own
    //panel.setDefaultCloseOperation(JPanel.EXIT_ON_CLOSE); //so the program will end when the JFrame is closed
    //panel.getContentPane().add(window); // *** add our JPanel into the JFrame here
    //panel.pack(); // size the panel and frame correctly
    // panel.setLocationRelativeTo(null); // place frame in the center
    panel.setVisible(true); // show it all
    But still no display, if you could help me with the coding to get it correct I would be very apprecitive..i am a complete noob in java.

  • More help needed with download of 1.0

    I have downloaded the old 1.0 several times. When I run the setup.exe is says it is the 2006- one. That is the 1.1 file that I don't want. How do I get to the 2005-11-01 1.0 file? Thanks

    I couldn't find a copy of the software online, so I uploaded it to one of my webspaces.
    If you get this message, reply with a time and date when you can be avalable to download it, and I'll post you a link.

  • Verify custom plugin signature with Adobe Default Security

    Hi,
    I have a few questions using Adobe Default Security when verifying a signature.
    I've created my own signing plugin which works well. When I verify my signature it states that it is a valid signature, that the document has not been altered and that the certificate is valid. When I remove my plugin and verify the signature with the Adobe Default Security it states that the signature is invalid and that the document has been altered or corrupted. When I use the DocSign sample plugin to verify my signature it states the the signature is unknown and that the integrety has not yet been verified.
    My question are:
    Why Adobe Default Security telling me the signature is invalid instead of unknown, like the DocSign example?
    What can I do so that signature becomes unknown and not invalid when verified with Adobe Default Security?
    Why is Adobe Default Security telling me the document has been altered or corrupted, when it has not been changed?
    Regards,
    Magda

    As this can't be debugged without a copy of your plugin, files, etc. - you will need to open up a formal support ticket for this with our Developer Support.

  • Need more 2D performance with RX9800 Pro

    Hello,
    I need more 2d performance with this card, better vector work optimization and so on. I'm work with Illustrator CS2, and it's too "slow" when i am dragging, etc.
    Is any way to incerase 2d performance ? Some unofficial drivers, or some "hack" ?
    Configuration:
    MSI K8T NEO 2
    CPU Athlong 64 3000+
    RX9800 PRO
    2x512 Apacer 400Mhz CL2.5
    Seagate 120GB S-ATA
    PSU 500W chill

    There isn't any optimization for that card to speak of with what you are doing.
    I would think a Matrox card would be better suited, but I am also speculating. It is far better at 2d performance regarding raster/vector operations.
    There might be a way to optimise the driver code, but I have no idea how.
    You might want to look into communities related to the work your are doing. I do remember Adobe has a forum and tech docs, perhaps you might find what you are looking for there http://www.adobe.com/support/main.html

  • I need some more interview question with answer on modeling,reporting.

    i need some more interview question with answer on modeling,reporting.

    Hi,
    You may find tons of topic about interview question. Please try to search forums before opening a post next time.Take a look at the link below.
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=bwinterviewquestions&adv=true&adv_sdn_all_sdn_author_name=
    Regards,
    ®

  • Should I upgrade to Macericks now from 10.6.8 on my i-Mac(mid 2007, core 2 duo?). Will Mavericks be more secure than 10.6.8 ? 10.6.8 has been great, it runs great with all my apps but am concerned about future supportibility?

    Should I upgrade to Mavericks now from 10.6.8 (i-Mac, mid 2007, core 2 duo)? Will Mavericks be more secure than 10.6.8 ?  I have the latest version of 10.6.8 and have upgraded my memory to 4GB. This could be one reason for me to make the move now.
    10.6.8 has been great, it runs great with all my apps but am concerned about lack of support now. I know my PC apps will not work but maybe some apps that work now will "walk away" from 10.6.8 and then there's the security question of above.
    I am also concerned about iPhoto 9 transition to i-Photo 11 and compatibility of my Time Machine WD Passport HD (format: Mac OS Extended (Journaled) based on several questions in applicable forums.
    Thanks for your help in this important decision!

    If I were you I would stick with Snow Leopard. It's much better suited to your old hardware. That said:
    Upgrading from Snow Leopard to Lion or Mavericks
    To upgrade to Mavericks you must have Snow Leopard 10.6.8, Lion, or Mountain Lion installed. Purchase and download Mavericks (Free) from the App Store. Sign in using your Apple ID. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mavericks- System Requirements
           Macs that can be upgraded to OS X Mavericks
             1. iMac (Mid 2007 or newer) — Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) —
                 Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) — Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) — Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) — Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) — Model Identifier 3,1 or later
             7. Xserve (Early 2009) — Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
    Are my applications compatible?
             See App Compatibility Table — RoaringApps.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mavericks, it may still meet the requirements to install Lion.
    You can purchase Lion at the Online Apple Store. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • Hi guys, need your help with iCloud notes on Mac 10.7.5; I've found this feature's more useful comparing with stickers, however can't pin notes to desktop or dock, "double click"on the note doesn't work with this version of software.

    Hi guys! Need you help with iCloud Notes on Mac Pro 10.7.5. I've found this apllication more useful comparing with "stickers", however can't pin it to desktop or dock. Thanks a lot in advance!

    Hi guys! Need you help with iCloud Notes on Mac Pro 10.7.5. I've found this apllication more useful comparing with "stickers", however can't pin it to desktop or dock. Thanks a lot in advance!

  • Is there any internet security needed for use with the ipad 2??

    is there any internet security needed for the ipad 2?  I.e. For when you're shopping online etc?

    You don't have to purchase a mouse. You already have one, it's wireless and the only one that will work on an iPad.
     Cheers, Tom

  • Configuring IPIB with non-default partition key

    Hello
    I want to put IB HCA port into non-default partition to create separate network on my IB fabric. On IB switch (Voltaire ISR9096) I created network with non-default partition key 0x7ffe and add HCA port to this partition.
    But this IB-VPPA was displayed as unconfigured on Solaris host
    ib::3BA0001004181,ffff,ipib    IB-VPPA      connected    configured   ok
    ib::3BA0001004182,fffe,ipib    IB-VPPA      connected    unconfigured unknown
    ib::3BA0001004182,ffff,ipib    IB-VPPA      connected    configured   okConfiguration of new VPPA with cfgadm was unsuccessful:
    # cfgadm -c configure ib::3BA0001004182,fffe,ipib
    Configure the device: /devices/ib:fabric::3BA0001004182,fffe,ipib
    This operation will suspend activity on the IB device
    Continue (yes/no)? yes
    cfgadm: Hardware specific failure: configure operation failed ap_id: /devices/ib:fabric::3BA0001004182,fffe,ipibI unconfigured VPPA with default partition key (0xffff) on HCA port 0x3BA0001004182 and issued cfgadm for VPPA with pkey 0xfffe again - the same effect.
    I tried this on Solaris 10 8/07 and OpenSolaris b72 with the same result - no success ;)
    Is it possible to configure VPPA with non-default pkey on Solaris ?
    Is it possible to configure more than 1 IPIB VPPA on single HCA port ?
    How to perform these configurations ?
    Thanks in advance.
    Regards,
    Denis

    hi
    I was able to setup the listener to serve both databases using netmgr, thanks. Apparently I was trying to use the wrong tool for this previously.
    Now i'm able to access the EM Database Control and it seems to be working fine though i get the following error message
    Logged in As SYS
    Error
    java.lang.Exception: Number of responses does not match queries
    Database Instance: devel.foo.bar
    Now, i'd like to be able to use EM for administering two separate databases (running on the same host). Do i need to migrate the database control somehow to grid control? How do i do that?
    What about security? I'd like to use SSL and limit connections to selected clients only.
    regards,
    aspa

  • My itunes in pc fails to secure link with itunes store it shows the process bar it automatically quits the process it also does not shows any on the screen. i am using windows xp service pack 3. what shoul i do?

    my itunes in pc fails to secure link with itunes store it shows the process bar it automatically quits the process it also does not shows any on the screen. i am using windows xp service pack 3. what shoul i do?
    Diagnostics test
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    ECS G31T-M7
    iTunes 10.5.2.11
    QuickTime 7.6.9
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0012ABAC07F3CCB0
    Current user is an administrator.
    The current local date and time is 2011-12-31 14:06:21.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is not supported. (16005)
    Video Display Information
    Intel(R) G33/G31 Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {7599FAD1-1BB9-4AC6-80AF-404253DC519E}
    Description:            Atheros L2 Fast Ethernet 10/100 Base-T Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.5
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Sat Dec 31 13:46:09 2011
    Lease Expires:       Tue Jan 03 13:46:09 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    SSL 3.0 Support:     Enabled
    TLS 1.0 Support:     Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was unsuccessful.
    The network connection timed out.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-12-31 14:00:02.
    **** Device Connectivity Tests ****
    iPodService 10.5.2.11 is currently running.
    iTunesHelper 10.5.2.11 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Connected Device Information:
    rawkiss’s iPhone, iPhone 3G running firmware version 4.0
    Serial Number:       86931UEAY7H
    **** Device Sync Tests ****
    Sync tests completed successfully.

    I have found a fix after doing additional research through this forum. Tech Note #328730 addresses this problem and it works for Photoshop Album 3.2 even though it was written for release 1.0.
    Here is a link that will take you directly to the Tech Note:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=328730
    When using this fix the Tech Note indicates:
    "Imported image data and tags are lost when you re-create the My Catalog.psa file, so you need to reimport images and reapply any tags"
    however it did retain the captions (at least it did for me).

  • Windows cannot load the user's profile but has logged you on with the default profile for the system.

    My Windows 7  crashed a couple days ago after a windows update, I got this message.
    Windows cannot find the local profile and is logging you on with a temporary profile. Changes you make to this profile will be lost when you log off.
    I restarted the machine and got this message
    Windows was unable to load the registry. This problem is often caused by insufficient memory or insufficient security rights.
    DETAIL - The process cannot access the file because it is being used by another process. for C:\Users\TEMP\ntuser.dat
    I checked the event Log I found these .
    Windows cannot load the user's profile but has logged you on with the default profile for the system.
    DETAIL - Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
    Windows has backed up this user profile. Windows will automatically try to use the backup profile the next time this user logs on.
    Windows cannot load the locally stored profile. Possible causes of this error include insufficient security rights or a corrupt local profile.
     DETAIL - The process cannot access the file because it is being used by another process.
    This is the first error in the event viewer after a successful logon
    The description for Event ID 34 from source ccSvcHst cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
     If the event originated on another computer, the display information had to be saved with the event.
    ccSetMgr
    Windows cannot load the user's profile but has logged you on with the default profile for the system.
    DETAIL - Access is denied.
    Looking at the Logs all I can tell is that after the Desktop Window Manager started if caused this error.
    The winlogon notification subscriber <SessionEnv> was unavailable to handle a notification event.
    then this one
    The Desktop Window Manager has exited with code (0x40010004)
    Then this before it shutdown.
    The User Profile Service has stopped.
    I started up the PC and the first message I got was
    How can I get access to my user profile? do I need to createa new Administrator account? Please help
    The EventSystem sub system is suppressing duplicate event log entries for a duration of 86400 seconds. The suppression timeout can be controlled by a REG_DWORD value named SuppressDuplicateDuration under the following registry key: HKLM\Software\Microsoft\EventSystem\EventLog.

    hi do the following
    1. In Search programs and files (Windows 7) area, type in regedit, and press Enter.
    2. If prompted click yes,
    3.  expand the following HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    4. click the sid that related to your admin profile (if you not sure, click each sid and in turn look to the right hand side of registry editor it will show who that sid is related to one of the registry files should hae in description localhost\admin or
    something similair)
    5. right click the sid and press delete.
    6. restart your machine and log back on with the admin account, this will then rebuild the admin profile... dont worry when it loads and none of your personal settings are saved or files or folders... go to c:\users
    in here you will see two folders for the admin account, one will be just admin and the other most likely admin.localhost
    i cant remember which one is which but just check both, one will still have all your files and folders in it.
    i suggest making a backup of your data before doing this incase something does go wrong, but ive had this happen many times in a domain enviorment and has worked for me everytime.

  • Webinar: How to implement secure scenarios with SAP NW PI 7.1

    SAP Intelligence Platform & NetWeaver RIG APJ Expert Call
    Dear valued SAP Experts,
    Next SAP Intelligence Platform & NetWeaver RIG Expert Call Session will take place on Tuesday, August 18.
    The SAP Intelligence Platform & NetWeaver RIG Expert Call Sessions are designed to support consultants, partners and customers  during their implementation projects. The sessions cover all different aspects of SAP NetWeaver and are aimed at
    thus provide knowledge which is not available via standard training courses. The session duration is typically 60min and includes questions and answers.
    Tuesday, August 18, 2009:
    How to implement secure scenarios with SAP NetWeaver Process Integration 7.1
    Time: 2.00 - 3.00 p.m. Singapore Time (UTC +8)
    This event will feature Makoto Sugishita with the SAP Intelligence Platform & NetWeaver Regional Implementation Group.
    Makoto provides the following abstract:
    In this session you will learn more about the core security concepts that are provided with the service-oriented architecture (SOA)
    management capabilities in SAP NetWeaver Process Integration (SAP NetWeaver PI). This session will cover main use cases and
    supported scenarios of secure SAP NetWeaver PI deployments. 
    SAP Connect Link: https://sap.emea.pgiconnect.com/I016095
    (no passcode needed)
    Dial in:
    For dial in details please register here http://www.surveymonkey.com/s.aspx?sm=EFeuZl9PxrwKOW5i5W556g_3d_3d
    Kind regards,
    Sarma Sishta
    SAP Intelligence Platform & NetWeaver RIG APJ

    hi,
    I'm making this a sticky thread till August 18 so it will have better visibility
    Regards,
    Michal Krawczyk

  • Is there any way to may my ipad more secure?

    I'm having to change my password at least once a week. I keep getting emails saying my password has been reset am I'm not doing it. I'm them locked out of apple. I have to log on via another computer to reset my password and answer security questions. I've changed my password to many different things, please help me?

    It's not your iPad that needs to be more secure - this is to do with your AppleID.
    Most likely its some (stupid) person mistaking your email address for theirs, and when finding they can't log in to their (your) account, they try to reset the password, which then sends you the email.
    This happens frequently to people with email addresses that are similar to many common names. You'd be surprised how many people can't remember their own email address.
    Unfortunately, there's not a lot you can do to combat people's stupidity. If you do have am easily mistaken email address as your AppleID, perhaps you could try changing it to a less common one...

  • Service Manager 2012 Agentless Monitoring and SQL Servers More secure distribution

    Having both SCSM 2012 and 2012 in my network, I want to monitor the all using a single account which is securely distributed. The problem is agentless monitored servers does not appear in the "more secure" list.
    My Scenario:
    I have scsm 2012 installed with the following condition:
    SCSM Main DB -> Monitored with Agent (not a management server)
    SCSM Data Warehouse -> Agentless monitored
    SCSM Workflow and other Management Servers -> Agentless Monitored
    Some Test SCSM 2012 Servers with SQL on the same machine -> Agentless Monitored
    Some Test and Operational SCSM 2012 Servers -> Agentless Monitored
    I want to use a single account to monitor them all, I have set the "Service Manager Database Account" profile (yet to understand why Service Manager Database
    Account is actually a Profile!) and in the underlying account set the distribution to "more secure" . As stated above, I have many servers with the SQL running on the management serves and I cannot
    configure them in the SQL account.
    Is my scenario wrong?
    Thanks
    YSobhdel

    It seems the SQL MP is monitoring the database on agentless managed computers without my permission!
    All my agentless managed computers are using the default action account to monitor the SQL!
    Any explanation why is that so?
    Thanks
    YSobhdel

Maybe you are looking for

  • My iPod doesn't seem like enjoy working, could someone help me out?

    This is my second iPod (I had to send the first one back to get it replaced) and it's getting ridiculous. About three months ago it stopped working again (the new one) and I got a box to send it back, but I tried installing new software and updating

  • Adobe Reader PDF Desktop Icons No Longer Thumbnail Images

    Hi... I am running Windows 7 Home Premium x 64 - and thanks to a fix for this I found somewhere a while ago, it's been working fine for the longest time.  In the past week, I see that my Adobe Reader desktop icons are no longer thumbnail images - the

  • How to skip PROCESS_VALIDATION phase without setting immediate to true

    I am getting the following error and I don�t know what to do. I know it is caused during the PROCESS_VALIDATIOn phase. Please help. I have a reproducible example after the message. Error 500--Internal Server Error java.util.NoSuchElementException    

  • Copy control UB to ENL

    Dear all, I am interested to know the transaction to find out copy control for  STO , order type UB and delivery type is ENL and delivery item category is NLN . Can any body please post. Note : If you provide the node of SPRO , it will be appreciated

  • Macbook (2010) to HDTV  - not working

    First of all I'd like to apologise since I know how many posts there are on TV connection troubles, but I'm finding it difficult to find a solution. I bought a MiniDisplay port to HDMI adapter and then connected it to my HDTV via a HDMI cable, but al