[Solved] Hiding the file owned by 'X' and 'Y': '/path/to/file/' output

Hello,
After Pacman runs (after installing, upgrading, removing, etc), there is an annoying output that shows:
~ $ sudo pacman -S somepackage
file owned by 'X' and 'Y': '/path/to/file'
~ $
I know that the output is (usually) caused by the --force option. How can I hide this output? I can't find it in the man page, or the wiki.
Last edited by masnormen (2013-09-22 11:50:34)

If I have read your post correctly you are getting the message because you used the force option inappropriately.  Although the example pacman command does not show you using force.  Do you get this message either with or without the force option?

Similar Messages

  • I bought a new iphone 4s and I have a problem with the service. How can it be solved? the SIM card is new and was working perfect withe iPhone 4G

    I bought a new iphone 4s and I have a problem with the service. How can it be solved? the SIM card is new and was working perfect withe iPhone 4G

    Under the answer you want to mark as correct you should see a box that says Correct with a green symbol to the left and a box with Helpful with an orange star to the left. Click on the one you want.
    And thanks for thinking about that, it is appreciated.

  • [Solved] Error : The file or folder path /Probl?me 1 does not exist

    Hello,
    I encountered this error
    The file or folder <path>/Probl?me 2 does not exist
    while I was trying to open a directory already extracted from a zip file containing directories with special characters. In this case, it is a "è" that was misinterpreted as a "?".
    I searched the forums and on google, the solutions proposed do not work for me. Although, I have to deal with these files written in french, I would like to have my locale in english (US), with a system wide support for special characters.
    Attempt 1: Adding the option : iocharset=utf8 into the fstab, like this :
    fstab :
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    /dev/cdrom /media/cd auto ro,user,noauto,unhide 0 0
    /dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
    /dev/fd0 /media/fl auto user,noauto 0 0
    /dev/disk/by-uuid/24ba75ac-e52d-40eb-a599-83b394b500b2 /boot ext2 defaults 0 2
    /dev/disk/by-uuid/c797f409-00bc-479a-b4d6-ab49943f644b / ext4 defaults 0 1
    /dev/disk/by-uuid/668427a8-5f51-42bd-a316-fc7984bf5f4f /var ext4 defaults 0 2
    /dev/sda7 swap swap defaults 0 0
    /dev/disk/by-uuid/417cd1b7-8f06-414b-84d5-e8714d9646ab /home ext4 defaults 0 2
    /dev/disk/by-uuid/ef9aa00e-0515-4d7b-aa23-8096e787250d /usr ext4 defaults 0 2
    /dev/disk/by-uuid/17d401b7-2fc7-4d9f-8e17-657d86926d2e /tmp ext4 defaults,iocharset=utf8 0 0 <<<<<<<<<<<<<<
    /dev/disk/by-uuid/71e543b6-e06c-4b0e-b1e3-3b491ff1fefe /var/cache/pacman/repos ext4 defaults 0 2
    #/dev/sda12 /mnt/archive ext4 defaults 0 2
    #.host:/ /mnt/hgfs vmhgfs defaults 0 0
    This solution does not work, because after adding iocharset=utf8, in front or after a "defaults", after a reboot, while mounting the filesystem, there is the following error message:
    Mounting Locale Filesystem :
    mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
    missing codepage or helper program, or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so
    $ dmesg | tail
    phy0: Selected rate control algorithm 'iwl-agn-rs'
    EXT4-fs (sda5): re-mounted. Opts: (null)
    EXT4-fs (sda5): re-mounted. Opts: (null)
    EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: (null)
    EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    EXT4-fs (sda10): Unrecognized mount option "iocharset=utf8" or missing value <<<<<<<<<<<<<<
    EXT4-fs (sda11): mounted filesystem with ordered data mode. Opts: (null)
    Adding 2104476k swap on /dev/sda7. Priority:-1 extents:1 across:2104476k
    tg3 0000:07:00.0: irq 44 for MSI/MSI-X
    Attempt 2: Changing all the locale features in KDE and in /etc/rc.conf as well.
    $ vim /etc/rc.conf
    LOCALE="fr_CA.utf8"
    HARDWARECLOCK=""
    TIMEZONE="America/Montreal"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    It is complicated to remove these directories. I had to use the inum to get precisely these directories before removing them.
    $ ls -il
    total 8
    1577566 drwxr-xr-x 2 [username] [username] 4096 28 jan 07:09 Probl?me 1
    1577573 drwxr-xr-x 2 [username] [username] 4096 28 jan 07:09 Probl?me 2
    $ find . -inum 1577566 -exec rm -i {} \;
    rm: impossible de supprimer « ./Probl\212me 1 »: est un dossier
    Note that the hypothetical character 'è' is represented has a '\212', a 'È' if seen as a extended ASCII character.
    These directories cannot be deleted this way :
    $ rm -r Problème\ 1
    rm: cannot remove `Problème 1': No such file or directory
    or
    $ rm -r ProblÈme\ 1
    rm: cannot remove `ProblÈme 1': No such file or directory
    What should I do to be make the operating system recognize those special character, and interpret them correctly ?
    Last edited by ramboman (2011-01-29 21:45:50)

    I found a working solution, but better solution are also welcome
    I had to have fr_CA not only in utf8 but also in iso88591. I had to modify the /etc/rc.conf this way :
    LOCALE="fr_CA" <<<<<<<<<<<<<<
    HARDWARECLOCK=""
    TIMEZONE="America/Montreal"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    To preserve the english US language system wide, I had to add the following line in the /etc/profile :
    # Allow french special character while in en_US
    export LANG=en_US
    The character misinterpreted by a "?" is now seen :
    as a "è" in dolphin
    as a "?" in the console
    It is now possible to access the folders.

  • ALV Grid - Hiding the values of a feild and disabling checkboxs

    Hello,
    I have a report that requires the need to hide certain fields in an ALV report as well as checkbox in certain rows.
    So example I want to turn the ALV's output from ....
    PO Number
    PO Item
    450000001
    001
    450000001
    002
    450000001
    003
    450000002
    001
    450000002
    002
    [   ] = checkbox
    to the desired output below ...
    PO Number
    PO Item
    450000001
    001
    002
    003
    450000002
    001
    002
    so baically I want to do 2 things
    1. Hide the values of certain fields if the value from the previous row is identital and ...
    2. .... only include checkboxes for each new value of that column by either hiding (preferable) or disabling them.
    Hope to hear from all of you soon.
    Thank you all and good day.

    Hi Chad Cheng,
    U have a variable IT_SORT in the FM REUSE_ALV_GRID_DISPLAY.
    IT_SORT -fieldname = ur fieldname 1.
    IT_SORT-up = 'X' or IT_SORT-Down = 'X'.
    Append it_sort.
    IT_SORT -fieldname = ur fieldname 2.
    IT_SORT-up = 'X' or IT_SORT-Down = 'X'.
    Append it_sort.
    awrd points if helpful
    Bhupal

  • [SOLVED] Kill the Gnome screen curtain once and for all

    Author edit: you can see the fix that finally worked in post https://bbs.archlinux.org/viewtopic.php … 4#p1351594
    I was inadvertently locked out of my own computer for about 10 minutes until I happened to stumble on the "Ctl + L" trick to bring up the login in screen.  How can I remove or disable the gnome shell screen lock for good.
    I already tried:
    setting the "screen lock" to OFF under gnome setting > Privacy (gnome 3.10 appears to ignore this, or "screen lock" refers to something else)
    the Disable Screen Shield extension - this has  not been updated to gnome 3.10
    Last edited by marko2010 (2013-11-19 18:04:06)

    I think I finally found a way to disable the inactivity curtain in gnome 3.10. Launch dconf-editor then drill down org > gnome > desktop> session. Find the key for idle-delay and change it's value to 0 .
    Or  you can do it in once step by running the command:
    gsettings set org.gnome.desktop.session idle-delay 0
    Note you would think that going into the gnome control center and moving Privacy > Screen Lock to "OFF" would completely disable the screen curtain, but this never worked for me. The curtain would still come up after periods of inactivity, but would no longer ask for a password. Adding the fix above, completely gets rid of this pesky thing.

  • How to solve 'The application has been moved and its path has changed...'

    Recently, I started getting a dialog box every time I tried to open Photoshop CS5, whether directly or through 'Open With...' in the Finder.  Here's what the dialog box looked like:
    After consulting with Adobe Support, the problem was solved (easily!), so I'm posting the solution here for the benefit of others.
    Solution
    Hold down SHIFT + OPTION + COMMAND while opening Photoshop.  You should see the following dialog box:
    Click Yes to delete the current settings file.
    Close Photoshop.
    DONE!
    Apparently, the preferences file can occasionally get messed up, generating the dialog box as a result.  The above procedure deletes saved preferences and reverts to default.  (You'll have to redo any custom preferences that you may have set, but at least you don't have to completely reinstall the software.)

    Jason,
    I tried this several times, but it's not helping. I took a screenshot of where my phantom app resides, and it's here
    Any other ideas on how to fix this?
    Thanks,
    John

  • [solved] Hiding the desktop

    Is there a way in GNOME to hide all desktop icons without using Openbox?
    Last edited by drtoki (2009-07-24 03:29:24)

    I haven't used GNOME in a long time, so I'm guessing your looking for this: http://linuxblog.pansapiens.com/2008/11 … ee-ubuntu/

  • Hiding Flash files in one icon

    Hello,
    I'm a newbie to this forum and a novice at Flash, having used
    the program for 3 years now. I was always interested in the
    creative and design quality level people have taken, using Flash,
    so that's why I took a class in the program during college. I never
    thought I would ever use Flash again because it was and still is a
    difficult program (I've learned it takes A LOT of patients and hard
    thinking to work), but I enjoyed what could be produced once I got
    through the hard, tedious stuff. So, that's my story....
    Of course, I have a question to bare.
    I just finished a slide show/movie of art pieces for client.
    Now, I want to save it as a CD-ROM file. Having taken a class in
    Director MX as well, it was very similar to Flash MX (this is the
    version I produced the slideshow/movie in) and I barely remember
    one of my projects where I had to create a Director movie and save
    the files in one icon (did that make sense?). In other words, with
    the numerous files that were produced from my movie (like in Flash
    where you have various saved scenes), I had to create one icon that
    would hold the files, so that the end user would only see that icon
    (instead of the various files) and click on it to start the movie.
    I guess you can say it was more of hiding the files in a icon. This
    is what I'm trying to do with my Flash slideshow/movie. I have the
    swf. file that has the complete slideshow/movie, but I'm not sure
    if this is enough or do I have to go through a process to create a
    icon to open the slideshow.
    Hope all that I've written made any kind of sense and any
    help will be greatly appreciated.

    Yes you want all the files into one EXE right ? i.e one ICON.
    You can use FlashJester Jugglor and hide all the other files
    into the
    Additional Files section in Jugglor.
    Download a FREE evaluation copy from
    http://www.jugglor.com
    and give it a go.
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • How Can Hide The File Name in URL Using Jsp

    I Want source code for Hiding The File name in url address using jsp.
    for example www.website/login.jsp is view but i want www.website/ only.

    Hi Praveen - how does that DEF would be determined?
    Have a look at the below blog for executing os commands
    SAP XI File Adapter OS Command Line Feature - Process Integration - SCN Wiki
    XI/PI: Command line sample functions
    Is there any problem in using the dynamic file name configuration??
    Message was edited by: Hareesh Gampa

  • Please explain the relationship between sequence setting and output

    I am looking for an explanation of the sequence setting and the output settings (Mac Quad core, 10.7.4 - CS6 Production Premium, PR)  I am primarily working in AVC-I 100 and XDCam. I've found that I can drop in AVC-I into a Seq and it will set the Seq to that codec. Many times I'll need to send the in-progress and final edits to my clients as an WMV (HD) video file. In FCP, I would export the self contained seq and use Episode to transcode to wmv. I'm having trouble understanding the best way to do this in PR (CS6).  I've found that if I leave the Seq setting to the AVC-I, the render and the file output is a 50% quality mpeg-I. Is it best to set up a custom sequence w/ ProRes as the render codec? I'm having a hard time finding or getting an explanation of best practices for this type of operation. Any guidance would be appreciated.
    Thanks,
    jim

    Remember I said you could force Pr to use your rendered preview files instead of the source media for export?  Selecting Match Sequence Settings in the Export Media dialog is how you force it.  Don't do that.  And don't shoot the messenger -- I've lobbied against that label for that control for 2 versions now.
    Some Export formats, like H.264 Blu-ray and MPEG2-DVD, have an available Preset called "Match Source Attributes".  If you choose that Preset, you get something like this:
    For details on setting up a sequence, see the Help files:
    http://help.adobe.com/en_US/premierepro/cs/using/WS3E67AF4C-B2A2-4f04-90B4-F8CCFB74B144.ht ml#WSd79b3ca3b623cac941d41a681247d1f35a4-7fff
    Jeff

  • Shuffling the file contents

    I have a program where it asks user input for X and Y Co-ordinates. Once the user enters the file co ordinates it stores in the file in this format :-
    1,2
    3,4
    5,6
    7,8
    9,10
    My only question is that how can i shuffle the file contents ? like i want the file output to come in any order. Example :-
    9,10
    3,4
    1,2
    7,8
    Can anyone give me some input ?. thanks

    lrngjava wrote:
    Yes i know mate. My question is Next time please make your question clear from the start. It will prevent these kinds of misunderstandings.
    that once i store the contents of the file then do i read the file, store in a collection and then use the shuffle method for the output ?Well, when you looked at the docs for these methods, did you see any other way you could possibly do it? Like, for instance, was there a signature that works directly on a file?
    You obviously have an idea how to do it, so the best approach is to try it, and then if it doesn't work or you get stuck, ask a more specific question.

  • Thin white and black lines on video output

    I loaded a packaged project to make some changes.  (The project was packaged with a different computer than my current. Everything looks clean within Premier.  I’m outputting standard Vimeo settings.  One of the GoPro clips exports with come-like white lines that cover the screen.  Cuts before and after are from the same camera, but do dot display any such problems.  The project originally outputted just fine.  I originally used neoscene to uncompress the footage.  I even ran the original footage through neoscene again, but not change.   Suggestions?   
    Windows 7  -  Premiere CS4 -  GoPro footage  -  Cineform Neoscene codec

    Thanks Jim.  I fixed the problem.  I'm not sure what the cause was, but when I re-uncompressed the file using GoPros free software, the files outputed clean again.  

  • Converting an sap file output program into xml output

    Hi,
    I have developed a program from which i am able to generate outptut as a file. Since this file is going to be used by the third party system, user has come back asking me to generate an conversion program into xml of the file output.
    Since i have not handled previously about generating the xml conversion program. Please let me know how to do this or if you could provide me the sample program it will be great.
    Thanks in advance.
    Sunil Kumar

    Hello
    Just for example:
    data: itab type standard table of sflight.
    data: xml_out type string,xmltab type swbhtmltable.
    select * from sflight into table itab.
    call transformation ('ID')
    source tab = itab[]
    result xml xml_out.
    call function 'SWA_STRING_TO_TABLE'
    exporting
    character_string = xml_out
    importing
    character_table = xmltab.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function 'GUI_DOWNLOAD'
    exporting
    filetype = 'BIN'
    filename = 'C:\xmlfile.xml'
    tables
    data_tab = xmltab.
    P.s. search SDN for CALL TRANSFORMATION

  • Getting the end point to end point connections paths that exist from Switch Exe

    Can I query the Switch Exe data base and get a list of the existing paths that Switch EXE has connected?
    I have a debug app that reads the channel names (via a property node) and present them to the operator to manually connect and disconnect paths using the end points. I would like to have an indicator showing the current paths that are connected and I was hoping to be able to get that from Switch Exe without me having to add code to keep track of it myself.
    The goal is to be able to click on any existing path to disconnect it. 
    I do query the switch cards and display the actual relays that are closed, but that is hard to relate that to what channels that are connected when we have 8 matrix cards all interconnected.
    Thanks
    Omar
    Omar

    Hi Omar,
    Try using something like the example below that incorporates an array to check every connection.  If the path is found to exist, then you could add that combination to an array that is displayed on the front panel.  Also see this knowledge base article about the known issue with the Find Routes VI.  Use the VI from the bottom of the page in place of the Find Routes from the palette.  Hopefully this helps!
    Regards,
    h_baker
    National Instruments
    Applications Engineer
    Digital Multimeter Resources

  • When I download firefox, using recommended setting, or my own, all the sub files/folders like plugins, modules, updater end up on the desktop as well as in the file location. And when I try to put them into the file location, they don't. And when I delete

    When I download firefox, using recommended setting, or my own, all the sub files/folders like plugins, modules, updater end up on the desktop as well as in the file location. And when I try to put them into the file location, they don't. And when I delete them, FireFox won't open. I tried deleting FireFox and reinstalling it multiple times, and a message pops up sometimes that says FireFox may not have installed correctly, so I follow the steps, but all the extra icons on my desktop don't go away. This has happened every time I have downloaded FireFox. The browser itself works, but I need to know how to get rid of these icons, but still be able to use FireFox. This is on a new computer, with Windows 7.
    == I downloaded FireFox. ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6

    Managed to solve this myself. Just went to properties > hidden.

Maybe you are looking for

  • Planning Application Crashes While Trying to Open Form

    Hi All, We are experiencing an issue where we cannot open up certain forms in Hyperion Planning that we were able to open up a few days ago. Nothing has changed from a database/server standpoint. Our JVM settings are set to 1,024 for both the min/max

  • Error new iTunes library

    Just downloaded latest update....now get error message saying: "New iTunes Library." when I try to open iTunes.

  • My SIM card doesn't fit in my Ipohe.

    I just bought Iphone 4S unlocked. But my SIM card doesn't fit my Iphone, I know I need to get micro SIM card. But I heard that you can cut your SIM card into micro SIM card. Does Apple Stores do that?

  • Using 9iAS Database for BI Applications?

    We have a 9205 Database that is serving as our data warehouse. I have created several servlets and java client classes using BI Beans and JDeveloper. I want to deploy them using 9i Application Server. The 9iAS install installs another database. Shoul

  • Problems calling a procedure

    Hello to all, I'm having some problens calling a procedure because i'm omiting the Schema value on porpuse. this procedure will be executed on several databases, so I do not whant do force the schema and want to let the CONTEXT do it's work ... :-( o