我尝试使用curl命令使用IE11安装Windows VM
scala> val df = Seq((101,121), (1232,345),(222,2242)).toDF("id","id_proof")
df: org.apache.spark.sql.DataFrame = [id: int, id_proof: int]
scala> df.show(false)
+----+--------+
|id |id_proof|
+----+--------+
|101 |121 |
|1232|345 |
|222 |2242 |
+----+--------+
scala> df.createOrReplaceTempView("girish")
scala> spark.sql("with t1( select 1232 id,345 id_proof ) select id, id_proof from girish where (id,id_proof) not in (select id,id_proof from t1) ").show(false)
+---+--------+
|id |id_proof|
+---+--------+
|101|121 |
|222|2242 |
+---+--------+
scala>
这并没有最终被Oracle虚拟机识别为VM,所以我转到Windows的网站并下载了一个运行良好的zip文件夹。我正在寻找一种方法来卸载/删除以前在Mac上使用cURL安装的Windows VM(它确实占用了空间)
答案 0 :(得分:0)
尝试找到这样的文件:
find / -type f -name "*.exe"
您还可以搜索zip,因为我在该.sh
中看到了zip文件:
find / -type f -name "*.zip"
如果您有很多zip文件,则应搜索每个图像,例如:
find / -name "IE9_Win7.zip"