File-roller should have zip/unzip depedency

I have gnome installed and tried to open a zip file using file-roller.  It did not work because the zip and unzip packages were not dependencies.  The  ubiquitous nature of the zip standard should make it a dependency on any file compression utility like file-roller.  Just my humble opinion.

I don't agree. Zip is not very common in linux. File-roller can handle it, if zip / unzip is installed, but literaly it does not really "depend" on it. For my taste, it is clear and simple: If you need another additional compression utility, next to the commonly used and installed (tar) you may install it (zip, unzip, bzip, ...). It should'nt just because you decide to use file-roller. Keep it simple does not mean install everything a user might want, as f.e. ubuntu would do.

Similar Messages

  • What are the names ( or a link to them) of Java files I should have? Thanx in advance.

    What are the names (or a link to them) of Java files I should have installed? Thanx in advance.

    This doesn't make sense.  It's more complicated than that.
    OS X will offer to install Java if you need it, unless you've gone in and deleted stuff and made a mess of things.  Did you manually go deleting stuff?

  • [svn:fx-trunk] 9711: The manifest files which should have gone with 9708 ( add TLFTextInput).

    Revision: 9711
    Author:   [email protected]
    Date:     2009-08-27 13:33:22 -0700 (Thu, 27 Aug 2009)
    Log Message:
    The manifest files which should have gone with 9708 (add TLFTextInput).
    Add the base classes used in the TLFText.css selectors to the Halo manifest.
    Add TLFTextInput to the spark manifest.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Gordon
    Tests run: mx ColorPicker,DateField,ComboBox,NumericStepper and TextInput as well as checkintests
    one ColorPicker_events_toolTipHide failed - the timer does fire eventually but it seems to take much longer than the hideDelay=10000.
    Is noteworthy for integration: yes
    Modified Paths:
        flex/sdk/trunk/frameworks/halo-manifest.xml
        flex/sdk/trunk/frameworks/spark-manifest.xml

    Thats good news.

  • I can not fint the texture files, which should have been installed with the CS6 and CC? why?

    I installed Photoshop CS6 a while back. Later on I discovered that the texture files where missing, or not included? Later I installed Photoshop CC, to see if the texture files were included here. But no, it was not. As far as I concern, I know that the texture files are included, and should have been installed, but they were not. Someone have any idea why?

    In Photoshop CC 2014, Filter Gallery opens the dialog below, and "Texture" is the last folder.

  • Reinstallation: files that should have a backup copy somewhere.

    I thought this might come in handy for people new to archlinux.
    main configuration: /etc/rc.conf
    xorg:                      /etc/X11/xorg.conf
    apache:                /etc/httpd/conf/httpd.conf
    php:                       /etc/php/php.ini
    mpd:                     /etc/mpd.conf
    conky:                      ~/.conkyrc
    firefox w/ ext.         ~/.mozilla
    opera w/ themes    ~/.opera
    add up your favorite application.
    Last edited by Jerry (2007-10-16 19:12:08)

    I'd backup my whole ~/ and /etc/ because there are all the important files. Off course, there's a lot of crap, you don't *have* to backup in /etc/, but you won't regret it, I guess.
    Otherwise I like to add the following files:
    vim ~/.vimrc
    irssi ~/.irssi
    bash ~/.bashrc

  • How do I create and send a zip file? I have Lion and I'm working in Word for mac

    To show you how little I know about any of this, I don't even know if this is the correct forum in which to ask this question. I'm a copywriter. I have a client in France. I have 15 word documents, 15 of the same documents in PDFs and a small Excel document to send him. Simple, mutlipage Word docs. Short two-page Excell sheet. I want to create a zip file for them to send to him. Can I do it? How? I have unzipped zip files other people have sent to me, but I've never created or sent one myself. I'm working in Word for Mac 2011. I have Lion. I'm using Mac's email. Please don't assume I know anything. I need very, very simple, play by play instructions. You are all very helpful, so I have high hopes.
    Nancy

    Visit:
    http://download.cnet.com/MacZip/3000-2250_4-10025248.html
    You will be able to both zip and unzip. If the recipient of your zipped file does not have zip, he/she will need to get it, or you could send him/her the above address so that he/she can unzip his/her file.
    (I wish the English language could settle on the use of something less clumsy that he/she him/her etc.)
    BTW, I think that you can zip only folders, not separate files, so put even one file into a folder before zipping).
    Message was edited by: SteveKir Added BTW

  • Decrypt and unzip a File + read a XML file received into the ZIP

    Hello,
    I need your help to develop some a complex Biztalk application.
    Here're my needs :
    Our Busness partner send us a zip file cripted with a standard PGP(Pretty Goof Privacy).
    The zip containts an XML file that i have to deal it, and some attachments file(PDF).
    So i need to know what's the best approach for the developpement of my application.
    I want to decrypt the ZIP and then Unzip the file and them read the XML file received in the zip.
    Knowimg that we already have the pipeline compenent to dectypt the file with the strandar PGP and an other pipeline compenent to unzip the File.
    Thank you

    Hi ,
    Try this code to unzip the file and send the xml message .If u face issue let me know
    namespace BizTalk.Pipeline.Component.DisUnzip
    using System;
    using System.IO;
    using System.Text;
    using System.Drawing;
    using System.Resources;
    using System.Reflection;
    using System.Diagnostics;
    using System.Collections;
    using System.ComponentModel;
    using Microsoft.BizTalk.Message.Interop;
    using Microsoft.BizTalk.Component.Interop;
    using Microsoft.BizTalk.Component;
    using Microsoft.BizTalk.Messaging;
    using Ionic.Zip;
    using System.IO.Compression;
    [ComponentCategory(CategoryTypes.CATID_PipelineComponent)]
    [System.Runtime.InteropServices.Guid("8bef7aa9-5da5-4d62-ac5b-03af2fb9d280")]
    [ComponentCategory(CategoryTypes.CATID_DisassemblingParser)]
    public class DisUnzip : Microsoft.BizTalk.Component.Interop.IDisassemblerComponent, IBaseComponent, IPersistPropertyBag, IComponentUI
    private System.Resources.ResourceManager resourceManager = new System.Resources.ResourceManager("BizTalk.Pipeline.Component.DisUnzip.DisUnzip", Assembly.GetExecutingAssembly());
    #region IBaseComponent members
    /// <summary>
    /// Name of the component
    /// </summary>
    [Browsable(false)]
    public string Name
    get
    return resourceManager.GetString("COMPONENTNAME", System.Globalization.CultureInfo.InvariantCulture);
    /// <summary>
    /// Version of the component
    /// </summary>
    [Browsable(false)]
    public string Version
    get
    return resourceManager.GetString("COMPONENTVERSION", System.Globalization.CultureInfo.InvariantCulture);
    /// <summary>
    /// Description of the component
    /// </summary>
    [Browsable(false)]
    public string Description
    get
    return resourceManager.GetString("COMPONENTDESCRIPTION", System.Globalization.CultureInfo.InvariantCulture);
    #endregion
    #region IPersistPropertyBag members
    /// <summary>
    /// Gets class ID of component for usage from unmanaged code.
    /// </summary>
    /// <param name="classid">
    /// Class ID of the component
    /// </param>
    public void GetClassID(out System.Guid classid)
    classid = new System.Guid("8bef7aa9-5da5-4d62-ac5b-03af2fb9d280");
    /// <summary>
    /// not implemented
    /// </summary>
    public void InitNew()
    /// <summary>
    /// Loads configuration properties for the component
    /// </summary>
    /// <param name="pb">Configuration property bag</param>
    /// <param name="errlog">Error status</param>
    public virtual void Load(Microsoft.BizTalk.Component.Interop.IPropertyBag pb, int errlog)
    /// <summary>
    /// Saves the current component configuration into the property bag
    /// </summary>
    /// <param name="pb">Configuration property bag</param>
    /// <param name="fClearDirty">not used</param>
    /// <param name="fSaveAllProperties">not used</param>
    public virtual void Save(Microsoft.BizTalk.Component.Interop.IPropertyBag pb, bool fClearDirty, bool fSaveAllProperties)
    #region utility functionality
    /// <summary>
    /// Reads property value from property bag
    /// </summary>
    /// <param name="pb">Property bag</param>
    /// <param name="propName">Name of property</param>
    /// <returns>Value of the property</returns>
    private object ReadPropertyBag(Microsoft.BizTalk.Component.Interop.IPropertyBag pb, string propName)
    object val = null;
    try
    pb.Read(propName, out val, 0);
    catch (System.ArgumentException )
    return val;
    catch (System.Exception e)
    throw new System.ApplicationException(e.Message);
    return val;
    /// <summary>
    /// Writes property values into a property bag.
    /// </summary>
    /// <param name="pb">Property bag.</param>
    /// <param name="propName">Name of property.</param>
    /// <param name="val">Value of property.</param>
    private void WritePropertyBag(Microsoft.BizTalk.Component.Interop.IPropertyBag pb, string propName, object val)
    try
    pb.Write(propName, ref val);
    catch (System.Exception e)
    throw new System.ApplicationException(e.Message);
    #endregion
    #endregion
    #region IComponentUI members
    /// <summary>
    /// Component icon to use in BizTalk Editor
    /// </summary>
    [Browsable(false)]
    public IntPtr Icon
    get
    return ((System.Drawing.Bitmap)(this.resourceManager.GetObject("COMPONENTICON", System.Globalization.CultureInfo.InvariantCulture))).GetHicon();
    /// <summary>
    /// The Validate method is called by the BizTalk Editor during the build
    /// of a BizTalk project.
    /// </summary>
    /// <param name="obj">An Object containing the configuration properties.</param>
    /// <returns>The IEnumerator enables the caller to enumerate through a collection of strings containing error messages. These error messages appear as compiler error messages. To report successful property validation, the method should return an empty enumerator.</returns>
    public System.Collections.IEnumerator Validate(object obj)
    // example implementation:
    // ArrayList errorList = new ArrayList();
    // errorList.Add("This is a compiler error");
    // return errorList.GetEnumerator();
    return null;
    #endregion
    /// <summary>
    /// this variable will contain any message generated by the Disassemble method
    /// </summary>
    private System.Collections.Queue _msgs = new System.Collections.Queue();
    #region IDisassemblerComponent members
    /// <summary>
    /// called by the messaging engine until returned null, after disassemble has been called
    /// </summary>
    /// <param name="pc">the pipeline context</param>
    /// <returns>an IBaseMessage instance representing the message created</returns>
    public Microsoft.BizTalk.Message.Interop.IBaseMessage
    GetNext(Microsoft.BizTalk.Component.Interop.IPipelineContext pc)
    // get the next message from the Queue and return it
    Microsoft.BizTalk.Message.Interop.IBaseMessage msg = null;
    if ((_msgs.Count > 0))
    msg = ((Microsoft.BizTalk.Message.Interop.IBaseMessage)(_msgs.Dequeue()));
    return msg;
    /// <summary>
    /// called by the messaging engine when a new message arrives
    /// </summary>
    /// <param name="pc">the pipeline context</param>
    /// <param name="inmsg">the actual message</param>
    public void Disassemble(Microsoft.BizTalk.Component.Interop.IPipelineContext pc, Microsoft.BizTalk.Message.Interop.IBaseMessage inmsg)
    IBaseMessage Temp = inmsg;
    using (ZipFile zip = ZipFile.Read(inmsg.BodyPart.GetOriginalDataStream()))
    foreach (ZipEntry e in zip)
    var ms = new MemoryStream();
    IBaseMessage outMsg;
    outMsg = pc.GetMessageFactory().CreateMessage();
    outMsg.AddPart("Body", pc.GetMessageFactory().CreateMessagePart(), true);
    outMsg.Context=inmsg.Context;
    e.Extract(ms);
    string XMLMessage = Encoding.UTF8.GetString(ms.ToArray());
    MemoryStream mstemp = new System.IO.MemoryStream(
    System.Text.Encoding.UTF8.GetBytes(XMLMessage));
    outMsg.GetPart("Body").Data = mstemp;
    _msgs.Enqueue(outMsg);
    #endregion
    Thanks
    Abhishek

  • HT1338 I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    It should unzip if you double-cick.
    What are you seeing happen when you do that?
    Select a .zip file in the Finder and Get Info (cmd-i). What is set for it to Open With. It should be Archive Utility.

  • How to set password for a zip file and should be checked when reading that

    Hi friends,
    how to set password for a zip file and should be checked when reading that file???
    thanks.
    Praveen Reddy.J

    Heyy man, i think, u did not get my problem.
    all i have to do is:
    i have to create a zip file, and we should secure it with password when creating. and whenever the user wants to open that zip file he should provide correct passowrd otherwise he could not read that file. So, we should check for that also.
    Tanks for reply.

  • Problem with zip/unzip of .swf files in XP

    For some reason, zipping a .swf file in XP and then unzipping on another XP machine, the file suffix changes from ".swf" to no suffix and properties change from Flash movie to Flash object.  Consequently, linking to the file with a URL in a presentation causes the file not found error. Renaming the unzipped file to filename.swf makes it unreadable.
    Any suggestions on how to compact .swf files without them being corrupted when they're unzipped?

    Sorry to say, aknle, I use Illustrator files in every After Effects project I do these days. I have never had the issue you are describing. I often receive files form external artists that I need to change to RGB from their CMYK originals. I often need to fix their art because they are print people and think of white as the paper and the absence of ink. But the files open and track and update for me flawlessly. Always have.
    I am on CS5 (not 5.5) using a Macintosh.
    bogiesan

  • Zip,unzip format files supported by XI

    Dear all,
    I have two requirements
    1)1 have a huge pdf files(total 15) each of size 10mb these files need to be zipped in the sender CC ,set to  XI and un zipped at the receiver ie I need 15omb pdf files at the receiver.The idea is to reduce burden on XI.
    2)A huge Xml(400mb) file is split in to multiples of 10 these files must be zipped individually in xi and send the unzipped file to the receiver.
    Thanks.
    Srinivasa

    hi check the below links for reference
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10748ef7-b2f0-2910-7cb8-c81e7f284af5
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7086f109-aaa7-2a10-0cb5-f69bd2affd2b
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2498bf90-0201-0010-4884-83568752a857
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cc1ec146-0a01-0010-90a9-b1df1d2f346f
    note:reward points if solution found helpfull.....
    regards
    chandrakanth.k

  • Zip/Unzip RoboHelp files

    Need instructions on how to zip and unzip roboehelp 6 files.
    When I zip, try to send file attachment, then try to unzip all I
    view is long stream of files and open up RH xpj but see nothing but
    empty new robohelp file.

    quote:
    Originally posted by:
    marvinwalker
    I am doing the following to zip file; right click on
    folder;add to ....zip. To unzip I am right click, unzip
    folder,extract to here. or trying to e-mail file; attach file then
    unzip, extract to....double click....when I go to view my project
    there are many files in extract mode and I look for RH xpj; open
    and its a blank project.......should I not be able to open RH zpj
    in extract mode and view entire project? I guess I need some step
    by step instructions.
    I get the empty RH shell when I open the xpj from within the
    zip file.
    Depending on the zip program you use, the zip folder may look
    almost exactly the same as a regular folder. So perhaps you are
    opening the xpj that is in the zip file, rather than the extracted
    one?
    Perhaps try the following:
    * put the zip file in c:\temp
    * extract to c:\mytestproject (or something else completely
    different from the location of the zip file)
    * make sure you navigate to c:\mytestproject to open the xpj.

  • My daughter accidentally restored her ipod4 to factory settings so I restored from the last iCloud backup. Her photos were all on camera roll so I believe should have been backed up, but none of them have been restored. Why?

    My daughter accidentally reset her ipod4 to factory settings so I restored from the last iCloud backup. All her photos were on camera roll so I believe they should have automatically been backed up, but none have been restored. Why?

    When she plugged in the ipod last night it backed up again so that now shows as the latest backup. No previous backups are listed so I do not seem to have the option to rerun the old one. She had many pictures on the camera roll taken from well before July. I can only presume that the backup in July must have been incomplete - but then I didn't think it was supposed to list as an option to restore from. Luckily many of the photos had been backed up on the pc but I am very frustrated as to why the icloud backup didn't protect them. Thank you for your advice though, I appreciate it.

  • My mac book pro crashed and the logic board died. They said that i could get the hard drive out and it should have all my files on it. How do i get them off and put them on my new computer?

    My mac book pro crashed and the logic board died. They said that i could get the hard drive out and it should have all my files on it. How do i get them off and put them on my new computer?

    Mj
    Do you mean a case for the external hard drive? See here. Hope this may be helpful to you.
    Regards,
    Joseph

  • Selected from my iphone "Buy more ringtones"and it has dowloaded as a music file how do i get it to be a ring tone which is what should have happened.  Any ideas on how to fix this?

    selected from my iphone "Buy more ringtones"and it has dowloaded as a music file and is now in itunes on my laptop and in music on my iphone. How do i get it to be a ring tone which is what should have happened in the first place.  Any ideas on how to fix this? As in itunes I cannot see how to a) change it to a ring or b) drag across to the right area...
    I simply followed the prompts on my iphone 4s and would have expected it to end up as a ring tone.. any help, guidance, advice welcome...

    selected from my iphone "Buy more ringtones"and it has dowloaded as a music file and is now in itunes on my laptop and in music on my iphone. How do i get it to be a ring tone which is what should have happened in the first place.  Any ideas on how to fix this? As in itunes I cannot see how to a) change it to a ring or b) drag across to the right area...
    I simply followed the prompts on my iphone 4s and would have expected it to end up as a ring tone.. any help, guidance, advice welcome...

Maybe you are looking for

  • Pl/sql block returning multiple rows

    Hi, I've created a plsql block which obtains an id from a name and then uses this id in another sql statement. The select statement to get the id works fine and the correct id is placed into the variable awardID. when i try to use this variable in an

  • Itunes not connecting with Internet

    I am in desperate need of some help. I have downloaded itunes but for some reason it says itunes could not connect itunes store and connection has been timed out. Another pop up says that it can not connect to the internet, I am connected to the net

  • Variants on the selection screen?

    How can we provide the select-options for Variants in the code which will 1)Take the values of Variants for the standard programs in the printout/data medium tab of F110 payment transaction. 2)BDC will take the values into the F110 transaction and po

  • NavigateToURL - question

    This makes IE promt for user to allow the "POP-UP" to open. navigateToURL(new URLRequest("myphp.php"),"_self"); However, it is not meant to be a pop-up but to go to that URL when user clicks on a button. What's wrong? Should "_self" be something else

  • No sound volume controller in Satellite L750 Series

    I just bought a new Satellite L750-A057 laptop, and found a very stupid design issue that it is has no volume controller ! ONLY WINDOWS one, so If I'm in a middle of any full screen application, I must exit or switch to desktop to lower the volume !!