lost and found ( for me ? )

Showing posts with label Fedora 16 64bit. Show all posts
Showing posts with label Fedora 16 64bit. Show all posts

Fedora 16 64bit : solved : chrome browser : can’t unmaximize an window by F11 key

I have installed Fedora 16 64bit in my laptop and also installed google chrome.

When I start Chrome , an window opens in maximum window size and can’t unmaximize the window by F11 key.



[root@fc16-note ~]# uname -ri
3.3.1-3.fc16.x86_64 x86_64

[root@fc16-note ~]# cat /etc/redhat-release
Fedora release 16 (Verne)

# google-chrome --version
Google Chrome 18.0.1025.151

In my case , I can solve this by editing Preferences file.

delete the following lines in  ~/.config/google-chrome/Default/Preferences file.
    13       "window_placement": {
    14          "bottom": 768,
    15          "left": 0,
    16          "maximized": false,
    17          "right": 1366,
    18          "top": 0,
    19          "work_area_bottom": 768,
    20          "work_area_left": 0,
    21          "work_area_right": 1366,
    22          "work_area_top": 26
    23       }

After deleting the above lines , chrome opens in normal size ( not maximum size ) and I can maximize/unmaximize an window by F11 key :)

Fedora 16 64bit : yum : Error: failure: repodata/filelists.xml.gz from google-chrome: [Errno 256] No more mirrors to try



[root@fc16 ~]# cat /etc/redhat-release
Fedora release 16 (Verne)
[root@fc16 ~]# uname -ri
3.3.0-4.fc16.x86_64 x86_64

When issuing “yum update” , I see the following error.
[root@fc16 ~]# LANG=C yum update -y
http://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/filelists.xml.gz: [Errno 12] Timeout on http://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/filelists.xml.gz: (28, '')
Trying other mirror.
Error: failure: repodata/filelists.xml.gz from google-chrome: [Errno 256] No more mirrors to try.

It seems that this is yum issue.
I have installed Fedora 16 64bit on my desktop and Fedora 16 32bit on my laptop.
This error occurs on Fedora 16 64bit ver.
[root@fc16 ~]# LANG=C yum --version
3.4.3
 Installed: rpm-4.9.1.2-6.fc16.x86_64 at 2012-03-26 15:43
 Built    : Fedora Project at 2012-03-07 11:29
 Committed: Panu Matilainen <pmatilai@redhat.com> at 2012-03-07

 Installed: yum-3.4.3-7.fc16.noarch at 2012-02-21 14:08
 Built    : Fedora Project at 2011-12-09 19:06
 Committed: J??n ONDREJ (SAL) <ondrejj(at)salstar.sk> at 2011-12-09

To solve this :

issue “yum clean metadata”
[root@fc16 ~]# yum clean metadata
読み込んだプラグイン:langpacks, presto, refresh-packagekit
14 metadata files removed
4 sqlite files removed
0 metadata files removed

then issue “yum update” again.
[root@fc16 ~]# yum update -y
<snip>
 vlgothic-fonts-common.noarch 0:20120312-1.fc16                                
 vlgothic-p-fonts.noarch 0:20120312-1.fc16                                     
 yum.noarch 0:3.4.3-23.fc16                                                    

完了しました!
[root@fc16 ~]# echo $?
0
[root@fc16 ~]#

If you still see an error , please try the below.
# yum celan all
# yum clean metadata
# yum update -y