web-dev-qa-db-ja.com

Picasa 3.9をインストールするにはどうすればよいですか?

Picasa(3.9)の新しいリリースに気付きました。 Picasaの現在のインストールの上にどのようにインストールしますか?

74
RolandiXor

Picasa 3.9をインストールするには

1)インストール ワイン および winetricks
Sudo apt-get install wine winetricks

2)ダウンロード Picasa 3.9 Googleから:
cd ~/ && wget http://dl.google.com/picasa/picasa39-setup.exe

3)ワインを使用してPicasaをインストールします。

wine ~/picasa39-setup.exe  

ログインを修正するには

これでPicasa 3.9がインストールされましたが、Googleにログインしていくつかの写真をアップロードする場合に問題が発生するため、修正するには次のようにします。

4)Internet Explorer 6をインストールします。
env WINEARCH=win32 WINEPREFIX=~/.tmp winetricks ie6

いくつかのウィンドウで「次へ」と「同意」をクリックする必要があります。

enter image description here

5)インストールをワインフォルダーにコピーします。
cp -r ~/.tmp/* ~/.wine/

6)完了!他のプログラムとしてPicasaを開きます。

Dashを開き、Picasaを検索します。ログインするには、右上隅をクリックしてください。

enter image description here

enter image description here


注:
I)この方法では、Picasaをユーザーフォルダーで完全に機能させるには、各ユーザーが手順2〜5を実行する必要があります。または、ターミナルでこれを1回実行するように依頼します。

 cd ~/ && wget http://dl.google.com/picasa/picasa39-setup.exe && wine ~/picasa39-setup.exe && env WINEARCH=win32 WINEPREFIX=~/.tmp winetricks ie6 && cp -r ~/.tmp/* ~/.wine/    

II)怠feelingだと感じている場合は、これをターミナルに貼り付けるだけで、上記のすべての手順が(ユーザー固有のインストールとして)実行されます。

 Sudo apt-get install wine winetricks && cd ~/ && wget http://dl.google.com/picasa/picasa39-setup.exe && wine ~/picasa39-setup.exe && env WINEARCH=win32 WINEPREFIX=~/.tmp winetricks ie6 && cp -r ~/.tmp/* ~/.wine/  

III)ステップ5の後、ファイル「picasa39-setup.exe」を削除できます。
rm ~/picasa39-setup.exe

また、フォルダー "〜/ .tmp":
rm ~/.tmp

IV)すべてをアンインストールする:

Sudo apt-get remove --purge wine ; Sudo apt-get remove --purge winetricks ; Sudo apt-get autoremove ; Sudo rm /usr/share/applications/Picasa3.desktop ; rm ~/picasa39-setup.exe ; rm -r ~/.tmp ; rm -r ~/.wine ; rm -r ~/.local/share/applications/wine* ; sed -i '/wine/d' ~/.local/share/applications/mimeinfo.cache
61
desgua

Picasa 3.9を使用している場合、Googleアカウントに接続することはできません。 Googleの従業員Brian Roseによると、現在Wineと互換性のない実装を使用して、認証メカニズムがOAuthに変更されました。

Picasa 3.9のWineのAppDBのエントリ があり、 バグレポート を提出しました。回避策として、 Winetricks を使用してInternet Explorer 6をインストールします。 Ubuntuにパッケージ化されている Internet Explorerのリンクが壊れている であるため、アップストリームのWinetricksスクリプトを使用する必要があります。

wget http://winetricks.org/winetricks
chmod +x winetricks
WINEPREFIX=~/.wine ./winetricks ie6
13
Mihai Capotă

PlayOnLinuxはPicasa 3.9をサポートしています

PlayOnLinux:

PlayOnLinuxは、LinuxユーザーがApple iTunes、Safari、Microsoft Office、Microsoft Internet Explorerなどの他の多くのアプリケーションと同様に、WindowsベースのビデオゲームをインストールできるWineソフトウェア互換性レイヤーのグラフィカルフロントエンドです。 。

インストール:

wget -q "http://deb.playonlinux.com/public.gpg" -O- | Sudo apt-key add -
Sudo wget http://deb.playonlinux.com/playonlinux_trusty.list -O /etc/apt/sources.list.d/playonlinux.list
Sudo apt-get update
Sudo apt-get install playonlinux

ウィザードの説明を検索して実行します。

League of Legends under Ubuntu - EuroBytesイメージ: buntuの伝説のリーグ-EuroBytes

参照:

8
blade19899