Getting file system name

Is it possible to get a File's partition file system name .
I mean like "FAT32" or "NTFS".
thx
R0mai

Because I'm developing an installer for a linux live-cd and it's bootloader : (syslinux) is not working on FAT32 file system, and I want to warn the user that it will not work.
If anybody can help to make syslinux work with FAT32, that would be also good for me.
R0mai

Similar Messages

  • How to get the system name of the client?

    Hi,
    I 've followed this Blog:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/getting%252blogged%252bin%252bportal%252buser%252bdetails%252bin%252bweb%252bdynpro
    getSAPUser() method returns the logged in user name.
    Is it possible to get the System name of the client?
    Thanks,
    RPN

    Hi,
    Following Code returns the System id :
    String sid = System.getProperty("SAPSYSTEMNAME");
                                       if(sid.equals("J2E")){
                                            //Do something                                   }
    Siddharth

  • How can i get my system name / IP address in JAVA

    Hi i need to get the system name / IP address of the machine where the JAVA program is running. Please help me in this.

    Try this
    java.net.InetAddress addr = java.net.InetAddress.getLocalHost();
    System.out.println(addr.getCanonicalHostName());
    System.out.println(addr.getHostName());
    System.out.println(addr.getHostAddress());Col

  • To Get current System Name / Machine Name

    Hi all,
    Is there any thing to get the current System Name or Machine Name In PL/SQL?
    Thanks in advance.
    Regards,
    GowriShankar.N

    Try :
    SELECT p.pid, p.spid, p.program, s.sid, s.program
    into lvpid, lvspid, lvprogram, lvsid, lvprogram2
    FROM v$process p, v$session s
    WHERE p.addr = s.paddr AND s.sid = (SELECT sys_context('userenv', 'sid') FROM dual);
    display :
    PID SPID PROGRAM SID PROGRAM
    25 12278 oracleBECD@v480d-01 145 SQL Developer
    1 rows selected

  • Filters Won't Work in CS3 - Get "file system I/O error" message

    Using CS3 on Mac G5, OS 10.4, and some Photoshop filters (e.g. Liquify) won't open, getting the message: "A file system I/O error has occurred."
    Some filters do open, but others fail.
    Have tried reinstalling CS3, trashing preferences, unlocked permissions - no help.
    Any suggestions?

    Peter,
    The very instant you create a new document or open an existing image file, Photoshop creates a Scratch Disk to use as virtual memory, regardless of how much RAM you have installed. This scratch disk is created on whichever drive you have designated as your PRIMARY disk drive. If it happens to be on your boot drive, i.e. the drive where your OS (Operating System) resides, it will be competing with the OS swap file for use of the one read head on that disk. Very bad for performance.
    Ideally, it should be a dedicated, separate internal hard drive, Figure on at least 35 times or more the size of your largest file for scratch. I keep a dedicated 160GB internal drive as my primary scratch disk.
    You should not be running a G5 with less than 4GB of installed RAM. 512 MB would be ludicrous, but even 1GB is pathetic little RAM.
    I agree that your hard drive sounds like it's going south. Get two new, large hard drives, at least 250GB each.

  • To get a SYSTEM NAME even using sa or Group login other than Windows Authentication

    how to get system name in username when we write a select query Select SUser_sname() in sql server 2008 r2.
    Actually , requirement  is  I have to give a sql serevr login to the client.
    NOTE : I cant create a Windows Authentication to the client.
    So, I create a login Called    Satish with Password
    Satish@123  ,
    when client login with Satish , and if he selects a  Select SUser_sname()  he will get a
    Satish as Output , but my requirement is i have to display a
    client name(System Name).
    Very Urgent , Please do me need full.

    You may refer here:
    CREATE LOGIN login1 WITH PASSWORD = 'J345#$)thb';
    CREATE LOGIN login2 WITH PASSWORD = 'Uor80$23b';
    GO
    CREATE USER user1 FOR LOGIN login1;
    CREATE USER user2 FOR LOGIN login2;
    GO
    --Give IMPERSONATE permissions on user2 to user1
    --so that user1 can successfully set the execution context to user2.
    GRANT IMPERSONATE ON USER:: user2 TO user1;
    GO
    --Display current execution context.
    SELECT SUSER_NAME(), USER_NAME();
    -- Set the execution context to login1.
    EXECUTE AS LOGIN = 'login1';
    --Verify the execution context is now login1.
    SELECT SUSER_NAME(), USER_NAME();
    --Login1 sets the execution context to login2.
    EXECUTE AS USER = 'user2';
    --Display current execution context.
    SELECT SUSER_NAME(), USER_NAME();
    -- The execution context stack now has three principals: the originating caller, login1 and login2.
    --The following REVERT statements will reset the execution context to the previous context.
    REVERT;
    --Display current execution context.
    SELECT SUSER_NAME(), USER_NAME();
    REVERT;
    --Display current execution context.
    SELECT SUSER_NAME(), USER_NAME();
    --Remove temporary principals.
    DROP LOGIN login1;
    DROP LOGIN login2;
    DROP USER user1;
    DROP USER user2;
    GO

  • Getting file node name from SQL query

    Hello everyone,
    I have a concurrent request that requires the file node name as input. For example, when I login to oracle on our test instance , I use http://moon1.oando-plc.com:8000. For this concurrent program, the file node name is shown as moon1.oando-plc.com.
    I need to use this argument in a PL/SQL procedure I am writing and I don't want to use any hardcoding.
    Is there any way to get this data from an SQL statement.
    Thanks

    Hi,
    You can get it from ICX_PARAMETERS table (HOME_URL column). Orsearch the profile options values for "http" to get the login page URL (and/or server name) -- See (Note: 201945.1 - How to list E-Business Suite Profile Option values for all levels using SQLPlus).
    Regards,
    Hussein

  • Getting file system drives

    Hi,
    I would like to get hold of all the drives on the system for navigation like a:\, c:\...etc. Basically a JFileChooser but without the GUI.
    I have looked up File, FileChooser and various sytem properties but none of these seem to apply. I also took a peek at JTree (kind of hoping a 'ready-made' class for a navigation tree already existed) but nope. I suspect this is due to the different management by OS's but isn't there some sort of 'getMountedPartitions()' method ?
    Shall I have to write native code ?
    Any suggestions/ideas are more than welcome,
    BadLands

    java.io.File
    listRoots
    public static File[] listRoots()List the available filesystem roots.
    A particular Java platform may support zero or more hierarchically-organized file systems. Each file system has a root directory from which all other files in that file system can be reached. Windows platforms, for example, have a root directory for each active drive; UNIX platforms have a single root directory, namely "/". The set of available filesystem roots is affected by various system-level operations such the insertion or ejection of removable media and the disconnecting or unmounting of physical or virtual disk drives.

  • Get Logical system name from Message type

    Hi
    I need to call Transaction  BD93 for which I need Logical system. I have created a Custom basic type for CLFMAS02.
    Now I need to find out in thhe program which logical system is configured for the custoem basic type say 'ZCLFMAS02'.
    Is ther any Function module or Logic to get Logical system details from Basic type.?

    Hi Gautam,
    Check with the tables EDP13 and EDP21, the outbound and inbound parameters tables respectively, where you can key-in the message type, basic type and get the corresponding logical systems.
    ~ Bineah

  • Getting the system name

    Hello all!
    Does anybody know how can I get to know, inside a class, the name of the host where that class is running? Thanks in advance.

    Your JVM knows a lot about the system properties.
    You get it all by System.getProperty( <propName> )
    To get a list of all of them:
    java.util.Enumeration loEnumProp = System.getProperties().propertyNames();
    while( loEnumProp.hasMoreElements() )
    String lsName = (String) loEnumProp.nextElement();
    ioModel.addElement( lsName + "='" + System.getProperty( lsName ) + "'" );

  • Get file path name for an given FileInputStream

    It sounds wired, but I do want to see if it is possible. Say we have a FileInputStream fis, which has been instantiated and valid. I would like to get the File associated with this FileInputStream. Is this possible and how?
    Thanks.

    It sounds wired, but I do want to see if it is
    possible. Say we have a FileInputStream fis, which
    has been instantiated and valid. I would like to get
    the File associated with this FileInputStream. Is
    this possible and how?
    Thanks.A FileInputStream may not be associated with a "disk file" at all. From javadocs, FileInputStream can be created from a [url http://java.sun.com/j2se/1.4.2/docs/api/java/io/FileInputStream.html#FileInputStream(java.io.FileDescriptor)]FileDescriptor, which can represent [url http://java.sun.com/j2se/1.4.2/docs/api/java/io/FileDescriptor.html#skip-navbar_top]an open file, an open socket, or another source or sink of bytes.

  • File system /oracle/SID/sapdata3 empty after EP 6.0 installation

    Hi Friends
    I'm installing EP 6.0 on WAS 6.40- SR1, AIX 5.1/Oracle 9.2.0 central system, where the Oracle database & the central instance are installed on the same host using the standard SAP DVD's, the installlation guide "SAP Web Application Server Java 6.40 SR1 on AIX: Oracle - Planning & Preparation" specifies creating 4 filesystems /oracle/SID/sapdata1, 
    /oracle/SID/sapdata2, /oracle/SID/sapdata3, /oracle/SID/sapdata4.
    I created the 4 filesystems but notice that after completing the installation with portal up & running, filesystem /oracle/SID/sapdata3 is empty, with no directories & files created inside. Can anybody advice if this filesystem doesn't gets any files, then why SAP document asks to create this in 1st place.
    Thanks & Rgds,
    Abhishek

    Hi Abhishek,
    Kindly go through the sap note 972263, it clearly explains the file system required and the size.
    SAP NetWeaver 2004s SR2 Java:
    File System Name Space Requirement
    /oracle/<DBSID>/sapdata1 1 GB
    /oracle/<DBSID>/sapdata2 3 GB
    /oracle/<DBSID>/sapdata3  -  GB
    /oracle/<DBSID>/sapdata4 6 GB
    SUM 10 GB
    Regards
    Manjunath

  • File system error on IX4-300d

    Hi all. I got message "File system error. You must perform file system check". How can I do it? 
    Sorry for my English.

    Hi. Can you tell me how to run fsck command. I have the same problem with the drive and I get the same error :
    "The file system on your Lenovo ix4-300d has errors and needs to be checked".
    I have 2 Hard disks both of 3 TB in simple configuration. The suggestion of file system check did not work. I tried your method of SSH into the hard disk. However I cannot complete the process as I got the following error:
    root@DataVault:/# fsck -y /dev/sdb2
    fsck 1.42.5 (29-Jul-2012)
    e2fsck 1.42.5 (29-Jul-2012)
    /dev/sdb2 is in use.
    e2fsck: Cannot continue, aborting.
    This is consistent with sdb1, sda1 & sda2
    Also I have provided the parted -l info below:
    root@DataVault:/# parted -l
    Model: ATA ST3000DM001-1CH1 (scsi)
    Disk /dev/sda: 3001GB
    Sector size (logical/physical): 512B/512B
    Partition Table: gpt
    Number  Start   End     Size    File system  Name     Flags
     1      33.6MB  21.5GB  21.5GB               primary
     2      21.5GB  3001GB  2979GB               primary
    Model: ATA ST3000DM001-9YN1 (scsi)
    Disk /dev/sdb: 3001GB
    Sector size (logical/physical): 512B/512B
    Partition Table: gpt
    Number  Start   End     Size    File system  Name     Flags
     1      33.6MB  21.5GB  21.5GB               primary
     2      21.5GB  3001GB  2979GB               primary
    Model: SanDisk Cruzer (scsi)
    Disk /dev/sdc: 16.0GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    Number  Start   End     Size    Type     File system  Flags
     1      16.4kB  16.0GB  16.0GB  primary  fat32        lba
    Model: Linux device-mapper (linear) (dm)
    Disk /dev/mapper/9aee462_vg-lv3a09ce04: 5958GB
    Sector size (logical/physical): 512B/512B
    Partition Table: loop
    Number  Start  End     Size    File system  Flags
     1      0.00B  5958GB  5958GB  ext3
    Model: Linux device-mapper (linear) (dm)
    Disk /dev/mapper/md0_vg-vol1: 17.2GB
    Sector size (logical/physical): 512B/512B
    Partition Table: loop
    Number  Start  End     Size    File system  Flags
     1      0.00B  17.2GB  17.2GB  ext3
    Model: Linux device-mapper (linear) (dm)
    Disk /dev/mapper/md0_vg-BFDlv: 4295MB
    Sector size (logical/physical): 512B/512B
    Partition Table: loop
    Number  Start  End     Size    File system  Flags
     1      0.00B  4295MB  4295MB  ext2
    Error: /dev/mtdblock0: unrecognised disk label
    Error: /dev/mtdblock1: unrecognised disk label
    Error: /dev/mtdblock2: unrecognised disk label
    Error: /dev/mtdblock3: unrecognised disk label
    Error: /dev/mtdblock4: unrecognised disk label
    Error: /dev/mtdblock5: unrecognised disk label
    Error: /dev/mtdblock6: unrecognised disk label
    Error: /dev/md0: unrecognised disk label
    Error: /dev/md1: unrecognised disk label
    root@DataVault:/#
    Any help would be greatly appreciated.
    Thanks in advance

  • How to find the local system name in remote desktop through oracle

    Hi all,
    i am useing oralce 9i,D2K (Forms 6i) ,Presently i had a small problem when ever i am useing the application through the remote desktop i can not able to find the local system name .If i am accessing from the local system name then i can get the system name but when the user accessing the application through remote desktop i want to find from which local system he is accessing the remote desktop through the application is there any way to find it .If please let me know .
    Thanks in advance
    Srini

    Hi,
    Not sure of what you want.
    Have a look at v$session view. Machine column is maybe what you're looking for.
    If you want to retrieve the local host executing remote desktop, it's actually not possible natievely, since it's still remote host that is connecting to the database.
    Hope it helps.

  • Windows 8.1 File System Performance Down Compared to Windows 7

    I have a good workstation and a fast SSD array as my boot volume. 
    Ever since installing Windows 8.1 I have found the file system performance to be somewhat slower than that of Windows 7.
    There's nothing wrong with my setup - in fact it runs as stably as it did under Windows 7 on the same hardware with a similar configuration. 
    The NTFS file system simply isn't quite as responsive on Windows 8.1.
    For example, under Windows 7 I could open Windows Explorer, navigate to the root folder of C:, select all the files and folders, then choose
    Properties.  The system would count up all the files in all the folders at a rate of about
    30,000 files per second
    the first time, then about 50,000 files per second the next time, when all the file system data was already cached in RAM.
    Windows 8.1 will enumerate roughly
    10,000 files per second the first time, and around
    18,000 files per second the second time -
    a roughly 1 to 3 slowdown.  The reduced speed once the data is cached in RAM implies that something in the operating system is the bottleneck.
    Not every operation is slower.  I've benchmarked raw disk I/O, and Windows 8.1 can sustain almost the same data rate, though the top speed is a little lower.  For example, Windows 7 vs. 8 comparisons using the ATTO speed benchmark:
    Windows 7:
    Windows 8:
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

    No worries, and thanks for your response.
    The problem can be characterized most quickly by the slowdown in enumerating files in folders.  Unfortunately, besides some benchmarks that show only an incremental degradation in file read/write performance, I don't have any good before/after
    measurements of other actual file operations.
    Since posting the above I have verified:
    My system has 8dot3 support disbled (same as my Windows 7 setup did).
    Core Parking is disabled; CPU benchmarks are roughly equivalent to what they were.
    File system caching is configured the same.
    CHKDSK reports no problems
    C:\TEMP>fsutil fsinfo ntfsInfo C:
    NTFS Volume Serial Number :       0xdc00eddf00edc11e
    NTFS Version   :                  3.1
    LFS Version    :                  2.0
    Number Sectors :                  0x00000000df846fff
    Total Clusters :                  0x000000001bf08dff
    Free Clusters  :                  0x000000000c9c57c5
    Total Reserved :                  0x0000000000001020
    Bytes Per Sector  :               512
    Bytes Per Physical Sector :       512
    Bytes Per Cluster :               4096
    Bytes Per FileRecord Segment    : 1024
    Clusters Per FileRecord Segment : 0
    Mft Valid Data Length :           0x0000000053f00000
    Mft Start Lcn  :                  0x00000000000c0000
    Mft2 Start Lcn :                  0x0000000000000002
    Mft Zone Start :                  0x0000000008ad8180
    Mft Zone End   :                  0x0000000008ade6a0
    Resource Manager Identifier :     2AFD1794-8CEE-11E1-90F4-005056C00008
    C:\TEMP>fsutil fsinfo volumeinfo c:
    Volume Name : C - NoelC4 SSD
    Volume Serial Number : 0xedc11e
    Max Component Length : 255
    File System Name : NTFS
    Is ReadWrite
    Supports Case-sensitive filenames
    Preserves Case of filenames
    Supports Unicode in filenames
    Preserves & Enforces ACL's
    Supports file-based Compression
    Supports Disk Quotas
    Supports Sparse files
    Supports Reparse Points
    Supports Object Identifiers
    Supports Encrypted File System
    Supports Named Streams
    Supports Transactions
    Supports Hard Links
    Supports Extended Attributes
    Supports Open By FileID
    Supports USN Journal
    I am continuing to investigate:
    Whether file system fragmentation could be an issue.  I think not, since I measured the slowdown immediately after installing Windows 8.1.
    All of the settings in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
    Thank you in advance for any and all suggestions.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

Maybe you are looking for

  • Line item text in ALV..urgent

    hello    i m creating an alv interactive report. in basic list i have fields from likp table and in interactive i have lips table fields. one need one more field in interactive list and that is "line item text" field. (i have matnr and arktx in inter

  • ME2O transaction for delivery

    HI, I created a subcontracting PO . Then i need to do delivery through ME2O transaction. BUt i am not able to see the material for which i created the subcontracting Purchase order . PLease suggest what must be the problem . Is there any customising 

  • PR Attachment

    Hi Expert, I'm currently developing PR print out which needs to display how many attachment available in the PR. Please tell me what function or tables that I can get the attachment information. I have check SOOD table, but I do not know where the ca

  • Ipad air music

    How can I transfer my music list from android Tablet to iPad air

  • Itunes could not connect to the iPhone "" because of an unknown error occur

    New to iTunes and iPhone (3g 8gig black)... Apple store was unable to activate the phone in the store... I installed iTunes today 7.7.0.43 and plugged in phone and got the message: itunes could not connect to the iPhone "" because of an unknown error