質問編集履歴

2

追記3に関しまして

2018/05/30 13:22

投稿

zombieheli
zombieheli

スコア14

test CHANGED
File without changes
test CHANGED
@@ -163,3 +163,13 @@
163
163
  このエラーは自分が環境構築しようとしていたときにも何回も発生しております。
164
164
 
165
165
  ですのでこれが環境構築できない原因ではないかと素人の意見ですが思っております。
166
+
167
+
168
+
169
+ 追記3に関しまして
170
+
171
+
172
+
173
+ なるほど。
174
+
175
+ 仮想マシンとホストOSはリンクしているわけですね。てっきり仮想マシン上に毎回入らないと編集できないと思っておりました.....

1

エラー内容の追加

2018/05/30 13:22

投稿

zombieheli
zombieheli

スコア14

test CHANGED
File without changes
test CHANGED
@@ -87,3 +87,79 @@
87
87
  # protocol: udp
88
88
 
89
89
  ```
90
+
91
+
92
+
93
+
94
+
95
+ 追加点
96
+
97
+
98
+
99
+ vagrant plugin install vagrant-hostsupdaterをしたあと
100
+
101
+ vagrant reload --provisionをすると
102
+
103
+ ```ここに言語を入力
104
+
105
+ The following SSH command responded with a non-zero exit status.
106
+
107
+ Vagrant assumes that this means the command failed!
108
+
109
+
110
+
111
+ /sbin/ifdown 'eth1' || true
112
+
113
+ /sbin/ip addr flush dev 'eth1'
114
+
115
+ # Remove any previous network modifications from the interfaces file
116
+
117
+ sed -e '/^#VAGRANT-BEGIN/,$ d' /etc/network/interfaces > /tmp/vagrant-network-interfaces.pre
118
+
119
+ sed -ne '/^#VAGRANT-END/,$ p' /etc/network/interfaces | tac | sed -e '/^#VAGRANT-END/,$ d' | tac > /tmp/vagrant-network-interfaces.post
120
+
121
+ cat \
122
+
123
+ /tmp/vagrant-network-interfaces.pre \
124
+
125
+ /tmp/vagrant-network-entry \
126
+
127
+ /tmp/vagrant-network-interfaces.post \
128
+
129
+ > /etc/network/interfaces
130
+
131
+ rm -f /tmp/vagrant-network-interfaces.pre
132
+
133
+ rm -f /tmp/vagrant-network-entry
134
+
135
+ rm -f /tmp/vagrant-network-interfaces.post
136
+
137
+
138
+
139
+ /sbin/ifup 'eth1'
140
+
141
+
142
+
143
+ Stdout from the command:
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+ Stderr from the command:
152
+
153
+
154
+
155
+ bash: line 5: /sbin/ifdown: No such file or directory
156
+
157
+ bash: line 19: /sbin/ifup: No such file or directory
158
+
159
+ ```
160
+
161
+ このようなエラーが現れます。
162
+
163
+ このエラーは自分が環境構築しようとしていたときにも何回も発生しております。
164
+
165
+ ですのでこれが環境構築できない原因ではないかと素人の意見ですが思っております。