You are not logged in.
can anyone please post the step wise instructions for installing unity or unity-2d using the repo ? It will be of a great help to a newbie like me.
+1
Offline
Just do a
makepkg -si
in every folder listed in README, from top to bottom.
Once every package has been built sucessfully, you should be able to select Unity in you login manager (gdm/kdm/lightdm/...).
You can even automate the compiling process by executing this in Unity-for-Arch directory:
cat README | grep "^[[:digit:]][[:digit:]]:" | sed -e 's/^..:\ \(.*[a-z0-9]\)\ .*->.*$/\1/g' > pkglist
for i in $(cat pkglist) ; do cd $i ; makepkg -si ; cd ../ ; done
Last edited by rleyh (2011-11-07 20:56:02)
Offline
Just do a
makepkg -si
in every folder listed in README, from top to bottom.
Once every package has been built sucessfully, you should be able to select Unity in you login manager (gdm/kdm/lightdm/...).
You can even automate the compiling process by executing this in Unity-for-Arch directory:
cat README | grep "^[[:digit:]][[:digit:]]:" | sed -e 's/^..:\ \(.*[a-z0-9]\)\ .*->.*$/\1/g' > pkglist for i in $(cat pkglist) ; do cd $i ; makepkg -si ; cd ../ ; done
Spot on To check for updates, you can run:
git pull
to update the PKGBUILD's and then:
./What_can_I_update\?.sh
to see which packages have later versions.
chenxiaolong wrote:However, thanks to L42y, I will be able to host a package repository for all the packages (i686 and x86_64).
When approximately will be ready repository for x86_64?
It will probably take a few days. I'm going to start compiling today.
Offline
itsme wrote:chenxiaolong wrote:However, thanks to L42y, I will be able to host a package repository for all the packages (i686 and x86_64).
When approximately will be ready repository for x86_64?
It will probably take a few days. I'm going to start compiling today.
It would be great. Thanks.
Offline
Anybody here experiencing this bug: https://bugs.launchpad.net/ubuntu/+sour … bug/877064 ? It's very annoying...
Offline
Here are the packages for x86-64 (compiled yesterday) : http://www.megaupload.com/?d=U5URXPM7
Really good work, but I think some packages are missing (Like empathy with ubuntu patches or localisation, I'm french and Unity is in english )
Offline
Here are the packages for x86-64 (compiled yesterday) : http://www.megaupload.com/?d=U5URXPM7
Really good work, but I think some packages are missing (Like empathy with ubuntu patches or localisation, I'm french and Unity is in english :()
Wow, that was quick! I'm still setting up a chroot to compile :P
If you have a list of packages that need Ubuntu patches, I'd be glad to package them. Do you know if Unity is translated in Ubuntu (is Unity translated into French when you're running Ubuntu)? If yes, I'll try to find out which package contains those files.
Offline
Do you know if Unity is translated in Ubuntu (is Unity translated into French when you're running Ubuntu)? If yes, I'll try to find out which package contains those files.
The localization files are mostly in the language-pack-XX-base and language-pack-gnome-XX-base packages (where XX is the language code). I have made an Arch package for german locales (for me, that is ), but it is neither universal for other languages nor included in my released package collection. I could create some language packs and add them to my PKGBUILDS if anyone is interested.
Offline
chenxiaolong wrote:Do you know if Unity is translated in Ubuntu (is Unity translated into French when you're running Ubuntu)? If yes, I'll try to find out which package contains those files.
The localization files are mostly in the language-pack-XX-base and language-pack-gnome-XX-base packages (where XX is the language code). I have made an Arch package for german locales (for me, that is ), but it is neither universal for other languages nor included in my released package collection. I could create some language packs and add them to my PKGBUILDS if anyone is interested.
Thanks for the info! I've reported a bug at Launchpad: https://bugs.launchpad.net/unity/+bug/884784 Hopefully, they will include the translations with the Unity source code.
Offline
New Unity-for-Arch package version (1.2.2). It contains mainly updated pkgbuilds and a new PKGBUILD for a small settings application for Unity2D (unity2d-settings). I also added some localization packages for language support other than english and the compiz packages that can be used for Unity(3D). XInput2.1 support was removed completely from Unity and Unity2D, the mtdev and utouch-* packages have thus been removed; they are not necessary anymore. Download link below.
Have fun
thn81
http://www.mediafire.com/?k6b461z9hqez33l
Edit: Upload package again because some download links were broken
Last edited by thn81 (2011-11-12 14:30:57)
Offline
New Unity-for-Arch package version (1.2.2). It contains mainly updated pkgbuilds and a new PKGBUILD for a small settings application for Unity2D (unity2d-settings). I also added some localization packages for language support other than english and the compiz packages that can be used for Unity(3D). XInput2.1 support was removed completely from Unity and Unity2D, the mtdev and utouch-* packages have thus been removed; they are not necessary anymore. Download link below.
Have fun
thn81
Nice! The localization packages must have taken awhile
Offline
I've just added gconf-ubuntu to my git repository. It contains Ubuntu patches which allow setting GConf settings to a default value. So, the Unity and MT Handlers plugin in Compiz no longer need to be enabled manually. That is taken care of by GConf.
I've also fixed the Xorg packages in my repository, so the uTouch stack works now. Unfortunately, Ubuntu's Xorg version is behind (ABI changes), so the Xorg drivers will need to be compiled too. I currently have the following Xorg drivers in my repo:
xf86-input-evdev-ubuntu
xf86-input-synaptics-ubuntu
xf86-video-intel-ubuntu
xf86-video-nouveau-ubuntu
xf86-video-ati-ubuntu
I can package more drivers if needed. Once the Xorg Edgers Launchpad PPA contains uTouch patches for the current Arch Linux Xorg version (1.11.1), the official drivers in the repo will work fine.
Offline
isn't it possible to upload it on aur?
There is a package there https://aur.archlinux.org/packages.php?ID=42311 but it's very old.
Offline
isn't it possible to upload it on aur?
There is a package there https://aur.archlinux.org/packages.php?ID=42311 but it's very old.
Unfortunately not. Up to 83 packages need to be compiled and I don't maintain very many of those packages in the AUR. I will be providing binary packages soon, now that I've finally solved the problem with the Unity panel and dash not showing up by default.
If anyone has any good guides on setting up a chroot for compiling (preferably using Arch Linux tools), I'd appreciate it. I will need to create an x86_64 chroot (same as host architecture) and also a i686 chroot (cross compiling).
Offline
This might be a stupid answer, but...
What about just creating another primary partition (might even be on some usb media), then booting from archiso 32bit and installing to that partition?
You should be able to chroot into this partition after you're done
Last edited by rleyh (2011-11-07 18:04:08)
Offline
This might be a stupid answer, but...
What about just creating another primary partition (might even be on some usb media), then booting from archiso 32bit and installing to that partition?
You should be able to chroot into this partition after you're done
Nice idea, but I'm not sure if it'll work. I'm currently running Arch on an encrypted software RAID 0 and RAID 1. One tiny change to the partition structure and I'll need to reset the UEFI firmware for my laptop to boot again.
I'll try the USB media, though the UEFI firmware probably will refuse to boot from it
Last edited by chenxiaolong (2011-11-07 18:33:34)
Offline
hm you do not need to boot from it, just install arch. you can even copy the finished arch installation to some folder on your hard disk, maybe fixing some stuff in /etc.
Also it should be possible to just grab the root-image.fs.sfs from an archlinux.iso and uncompress it to some random folder, but i cant manage to get the uncompressing part working :-P
For my sheeva plug they provide a rootfs.tar.gz for installation, but that's compiled for arm..
Last edited by rleyh (2011-11-07 19:10:52)
Offline
hm you do not need to boot from it, just install arch. you can even copy the finished arch installation to some folder on your hard disk, maybe fixing some stuff in /etc.
Also it should be possible to just grab the root-image.fs.sfs from an archlinux.iso and uncompress it to some random folder, but i cant manage to the uncompressing part working :-P
For my sheeva plug they provide a rootfs.tar.gz for installation, but that's compiled for arm..
Ahhh...I see. Thanks! I'll try that!
Offline
osmano807 wrote:Application switcher is behind the windows of the programs
The launcher is behind the windows of the programs.I had these problems too. I had to restart compiz in order to work normally, but I think the last update had fixed this bug.
I guess I was wrong. This bug is still present, and it's getting really annoying.
Offline
kuglee wrote:osmano807 wrote:Application switcher is behind the windows of the programs
The launcher is behind the windows of the programs.I had these problems too. I had to restart compiz in order to work normally, but I think the last update had fixed this bug.
I guess I was wrong. This bug is still present, and it's getting really annoying.
It's very hard to pinpoint what causes this bug. The same bug probably also causes the alt-tab-making-windows-vanish problem that I have.
Offline
It's very hard to pinpoint what causes this bug. The same bug probably also causes the alt-tab-making-windows-vanish problem that I have.
I never observed either of those bugs. When do they occur? How do you trigger their behaviour? Is there an entry in the ubuntu launchpad bugtracker?
Offline
chenxiaolong wrote:It's very hard to pinpoint what causes this bug. The same bug probably also causes the alt-tab-making-windows-vanish problem that I have.
I never observed either of those bugs. When do they occur? How do you trigger their behaviour? Is there an entry in the ubuntu launchpad bugtracker?
The bug where the dash opens behind all the windows doesn't happen very much to me, so I'm not sure how to reproduce it. For the other bug, if I Alt-Tab and choose "Show Desktop" and then switch back to an application, some or all of the windows (of any app) will disappear.
ps aux
shows that the app is still running and switching to another window manager and then back to compiz will make the windows appear again.
When this happens, compiz outputs this error message:
compiz (core) - Debug: refusing to manage window 0x########
EDIT: I found the Launchpad bug for the first bug: https://bugs.launchpad.net/ubuntu/+sour … bug/805087 The bug says that's it's fixed, but if you look at the comments, it seems that many people are still having this problem, even on Ubuntu.
Last edited by chenxiaolong (2011-11-11 14:54:44)
Offline
The bug where the dash opens behind all the windows doesn't happen very much to me, so I'm not sure how to reproduce it. For the other bug, if I Alt-Tab and choose "Show Desktop" and then switch back to an application, some or all of the windows (of any app) will disappear.
ps aux
shows that the app is still running and switching to another window manager and then back to compiz will make the windows appear again.
When this happens, compiz outputs this error message:
compiz (core) - Debug: refusing to manage window 0x########
EDIT: I found the Launchpad bug for the first bug: https://bugs.launchpad.net/ubuntu/+sour … bug/805087 The bug says that's it's fixed, but if you look at the comments, it seems that many people are still having this problem, even on Ubuntu.
Well, I have spent the last three hours trying to trigger any of those bugs: nada. Everything works as expected for me. However I should note that I am not using the 4.24 version of Unity but a patched one with the latest development code from trunk. This also requires a new version of nux (trunk from launchpad). Maybe the bug 805087 really is fixed now in the development version.
I also doubt that the Alt-Tab-Bug you are experiencing is connected to the former one. It looks more like a communication-problem-bug between compiz and the xserver. Does this bug also occur if you use unpatched xorg packages?
Offline
Well, I have spent the last three hours trying to trigger any of those bugs: nada. Everything works as expected for me. However I should note that I am not using the 4.24 version of Unity but a patched one with the latest development code from trunk. This also requires a new version of nux (trunk from launchpad). Maybe the bug 805087 really is fixed now in the development version.
I also doubt that the Alt-Tab-Bug you are experiencing is connected to the former one. It looks more like a communication-problem-bug between compiz and the xserver. Does this bug also occur if you use unpatched xorg packages?
Thanks a lot for your time and effort!
It's great that everything works in the latest development code! I'll look into the Compiz and Xorg packages to try to see what causes it. I have another Arch Linux computer with an unpatched Xorg, so I'll test on that tomorrow.
Last edited by chenxiaolong (2011-11-12 06:42:31)
Offline
Hi
In a few packages, I get the following error message during installation.
/usr/bin/perl: symbol lookup error: /usr/lib/perl5/site_perl/auto/threads/shared/shared.so: undefined symbol: Perl_Istack_sp_ptr
autoreconf: automake failed with exit status: 127
Is anyone familiar with this problem?
Offline