| Issue 8505: | Cant upgrade to 2.0.168.0 from either 2.0.168.0 or from 1.0.154.48 | |
| 7 people starred this issue and may be notified of changes. | Back to list |
Sign in to add a comment
|
Chrome Version : <REPLACE this with your version. Ex: 0.3.154.3> URLs (if applicable) : Other browsers tested: Add OK or FAIL after other browsers where you have tested this issue: Safari 3: Firefox 3: IE 7: What steps will reproduce the problem? 1. Using the option "about google chrome" and press "update now" 2. 3. What is the expected result? Upgrading What happens instead? It fails with the error: Update server not available (error 7) Please provide any additional information below. Attach a screenshot if possible. First the update server is available (bad error msg). The log file (chrome_installer.log) says: [0307/122032:ERROR:move_tree_work_item.cc(57)] failed move C:\tmp\chrome_3079\source\Chrome-bin\2.0.168.0 to C:\Users\hansson\AppData\Local\Google\Chrome\Application\2.0.168.0 [0307/122032:ERROR:work_item_list.cc(32)] list execution failed [0307/122032:ERROR:install.cc(272)] Install failed, rolling back... [0307/122032:ERROR:install.cc(274)] Rollback complete. [0307/122032:ERROR:setup.cc(216)] Install failed. My c:\Users\ is a windows mount from another drive if thats helps. I had no problems upgrading to either 2.0.166.0 from the stable a few days. Christian |
||||||||||||||||||||||
,
Mar 07, 2009
Just tried to change the variable "TMP" to inside the mounted c:\users\ and then the install worked! |
|||||||||||||||||||||||
,
Mar 07, 2009
Same here. I have TMP and TEMP variables generally set to D:\Temp (joggling with low space on C:\ on this old laptop), and update has been failing until I've set environment variable TMP to the default "C:\Documents and Settings\MyUsername\Local Settings\Temp". After doing that, install went fine. |
|||||||||||||||||||||||
,
Mar 09, 2009
Sunand, Please replicate this.
Owner: suna...@chromium.org
Cc: anan...@chromium.org hu...@chromium.org c...@chromium.org kuch...@chromium.org m...@chromium.org |
|||||||||||||||||||||||
,
Mar 10, 2009
I`m getting the same error when trying to update my 2.0.170.0 (11239) build to build located there - http://build.chromium.org/buildbot/snapshots/chromium-rel- xp/11342/mini_installer.exe chrome_installer.log is: [0310/205112:ERROR:move_tree_work_item.cc(57)] failed move C:\TEMP\chrome_20308\source\Chrome-bin\2.0.170.0 to C:\Documents and Settings\Serg\Local Settings\Application Data\Chromium\Application\2.0.170.0 [0310/205112:ERROR:work_item_list.cc(32)] list execution failed [0310/205112:ERROR:install.cc(272)] Install failed, rolling back... [0310/205112:ERROR:install.cc(274)] Rollback complete. [0310/205112:ERROR:setup.cc(216)] Install failed. WINXP SP 3 |
|||||||||||||||||||||||
,
Mar 10, 2009
It is possible that an move optimization rahulk did does not work across volumes. |
|||||||||||||||||||||||
,
Mar 10, 2009
Well if it's so, then it's an issue which is introduced in recent change commits. Until 2.0.168 upgrade it all worked well with same configuration. I have more of a feeling that at one point install tries to use %TMP% or %TEMP% env variables, and then later on during upgrade tries to work with %USERPROFILE%\Local Settings\Temp or something similar and it doesn't find files there. So it fails with Error 7. Happened the same tday with 2.0.169, fix was exactly the same (expected though). |
|||||||||||||||||||||||
,
Mar 10, 2009
Agree with Carlos. This looks like a p1. I can take a look.
Status: Assigned
Owner: hu...@chromium.org Labels: -Pri-2 Pri-1 |
|||||||||||||||||||||||
,
Mar 10, 2009
The underline implementation of move_tree is MoveFileEx. It seems MoveFileEx works for a single file across volumes but does not work for a directory across volumes. According to MSDN, the function simulates the move across volumes by using the CopyFile and DeleteFile functions. (The moving across volume issue was discussed during code review, and Rahul mentioned it works across volumes. I'd assume it is tested with single file) |
|||||||||||||||||||||||
,
Mar 10, 2009
This is possibly the same issue 8602 |
|||||||||||||||||||||||
,
Mar 10, 2009
Issue 8602 has been merged into this issue. |
|||||||||||||||||||||||
,
Mar 10, 2009
This is a regression from r10921 to fix issue 8218 . Huan is working on a fix, and I'll patch up the release branch and re-release 169.
Labels: -OS-All -Area-Misc OS-Windows Area-Installer Regression Mstone-2.0
|
|||||||||||||||||||||||
,
Mar 10, 2009
The following revision refers to this bug:
http://src.chromium.org/viewvc/chrome?view=rev&revision=11414
------------------------------------------------------------------------
r11414 | mal@chromium.org | 2009-03-10 19:50:21 -0700 (Tue, 10 Mar 2009) | 8 lines
Changed paths:
M http://src.chromium.org/viewvc/chrome/branches/169/src/chrome/installer/setup/install.cc?r1=11414&r2=11413
Revert the change in installer.cc to use MoveFile instead of CopyFile.
MoveFile fails across volumes, and many people have %TMP% on a different
volume than %LOCALAPPDATA%.
TBR= huanr
BUG= 8505
Review URL: http://codereview.chromium.org/43064
------------------------------------------------------------------------
|
|||||||||||||||||||||||
,
Mar 11, 2009
The following revision refers to this bug:
http://src.chromium.org/viewvc/chrome?view=rev&revision=11460
------------------------------------------------------------------------
r11460 | huanr@chromium.org | 2009-03-11 11:37:48 -0700 (Wed, 11 Mar 2009) | 7 lines
Changed paths:
M http://src.chromium.org/viewvc/chrome/trunk/src/base/file_util.h?r1=11460&r2=11459
M http://src.chromium.org/viewvc/chrome/trunk/src/base/file_util_unittest.cc?r1=11460&r2=11459
M http://src.chromium.org/viewvc/chrome/trunk/src/base/file_util_win.cc?r1=11460&r2=11459
file_util::Move fails on Windows if moving a directory
across volumes. This change adds a
CopyAndDeleteDirectory function, and Move falls back
to CopyAndDeleteDirectory if moving directory fails.
BUG=8505
Review URL: http://codereview.chromium.org/43069
------------------------------------------------------------------------
|
|||||||||||||||||||||||
,
Mar 11, 2009
r11460 should fix the issue. please verify.
Status: Fixed
Owner: anan...@chromium.org |
|||||||||||||||||||||||
,
Mar 11, 2009
2.0.170.0 (11460) was installed properly chrome_installer.log has zero size. |
|||||||||||||||||||||||
,
Mar 16, 2009
Where can I download the new version????? |
|||||||||||||||||||||||
,
Mar 16, 2009
http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/?C=M;O=D |
|||||||||||||||||||||||
,
Dec 18, 2009
(No comment was entered for this change.)
Labels: -Area-Installer Area-Internals Internals-Install
|
|||||||||||||||||||||||
| ► Sign in to add a comment | |||||||||||||||||||||||