If you are getting conflicts I think it's because your VMWare is not installed using the AUR package?
Search Criteria
Package Details: vmware-vmrc 12.0.5-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/vmware-vmrc.git (read-only, click to copy) |
---|---|
Package Base: | vmware-vmrc |
Description: | VMware Remote Console |
Upstream URL: | https://www.vmware.com/go/download-vmrc |
Keywords: | vmrc vmware |
Licenses: | custom:vmware |
Submitter: | fanjiang |
Maintainer: | richardjs |
Last Packager: | richardjs |
Votes: | 15 |
Popularity: | 0.33 |
First Submitted: | 2019-05-06 08:02 (UTC) |
Last Updated: | 2023-11-29 19:23 (UTC) |
fanjiang commented on 2021-10-05 22:26 (UTC)
invanaar commented on 2021-01-29 03:07 (UTC) (edited on 2021-01-29 03:15 (UTC) by invanaar)
I downloaded the bundle and changed the PKGBUILD like they said, but at the end of installation it says that there are conflicting files and doesn't install. The files they are conflicting with are VMware Workstation 16. I don't know how to fix it. I also tried to execute the bundle in a shell, but I get a message that it didn't install correctly and to look at the logs, but I have no idea what the logs mean. I'm using Manjaro, idk if that makes a huge difference in this.
marcolussetti commented on 2021-01-05 00:13 (UTC)
Thanks @fanjiang! Working great for me :)
fanjiang commented on 2021-01-04 00:28 (UTC)
Thanks @marcolussetti! Version bumped to 12.0.0.
keijko commented on 2020-12-21 14:31 (UTC)
@marcolussetti Oh! There exists a new version. Thanks for editing hints to update. It was working.
marcolussetti commented on 2020-12-20 05:03 (UTC)
To get 12.0.0 working (yay example):
- Download from VMWare site: https://my.vmware.com/en/group/vmware/downloads/details?downloadGroup=VMRC1200&productId=974&download=true
- Save/copy to ~/.cache/yay/vmware-vmrc/VMware-Remote-Console-12.0.0-17287072.x86_64.bundle
- Run the install yay -S vmware-vmrc --editmenu --save
- Select the appropriate toggles to edit the PKGBUILD
- Edit the PGKBUILD:
- line 17: source=("local://VMware-Remote-Console-12.0.0-17287072.x86_64.bundle"
- line 21: sha256sums=('3429d897256e80d7e087ff9fc7b5e679695db06a9af2596b40d303e61c5000aa'
- line 27: sh ../VMware-Remote-Console-12.0.0-17287072.x86_64.bundle -x ./files
maxdevaine commented on 2020-12-16 23:17 (UTC) (edited on 2020-12-16 23:17 (UTC) by maxdevaine)
Version 12.0.0-17287072 released. Max
fanjiang commented on 2020-10-10 23:23 (UTC)
updated to use vmware-keymaps
fanjiang commented on 2020-10-10 23:16 (UTC)
@tangent Thanks for the suggestion! I will update soon.
tangent commented on 2020-09-28 17:34 (UTC) (edited on 2020-09-28 17:34 (UTC) by tangent)
Recommend depending on vmware-keymaps:
--- PKGBUILD 2020-09-28 12:24:12.197072939 -0500
+++ PKGBUILD.keymaps 2020-09-28 12:23:31.187332767 -0500
@@ -9,7 +9,7 @@
arch=('x86_64')
url="https://www.vmware.com/go/download-vmrc"
license=('custom:vmware')
-depends=()
+depends=('vmware-keymaps')
optdepends=()
source=("local://VMware-Remote-Console-11.2.0-16492666.x86_64.bundle"
@@ -31,6 +31,10 @@
local vmware_installer_version=$(cat "$srcdir/files/vmware-installer/manifest.xml" | grep -oPm1 "(?<=<version>)[^<]+")
# mkdir -p "$pkgdir/var/log"
# mkdir -p "$pkgdir/etc/init.d"
+
+ # Depend on vmware-keymaps
+ rm -r $srcdir/files/vmware-vmrc-app/lib/xkeymap
+
cd "$srcdir/files"
mkdir -p "$pkgdir/usr/share" "$pkgdir/usr/bin" "$pkgdir/usr/lib/vmware" "$pkgdir/usr/lib/vmware/setup"
cp -r \
Pinned Comments
richardjs commented on 2022-05-04 19:02 (UTC) (edited on 2023-11-29 19:23 (UTC) by richardjs)
Notes for 12.0.1-2 [edit: applicable to 12.0.5-1]:
You need to download the VMware-Remote-Console .bundle from https://www.vmware.com/go/download-vmrc and place it in the same directory as the PKGBUILD.
vmware-keymaps has been made an optional dependency. vmrc will run fine without it, although I imagine how well it works may depend on your keyboard setup. Making it an optional dependency removes the problem of conflicting files between vmware packages, but also lets those who don't need it ignore it.