Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
483d0f44
authored
Feb 10, 2013
by
tarokkk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
laborgui: Fixed rdesktop
parent
045b5b30
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
miscellaneous/laborclient/cloudgui/gui.py
+2
-3
miscellaneous/laborclient/cloudgui/rdp.py
+4
-1
No files found.
miscellaneous/laborclient/cloudgui/gui.py
View file @
483d0f44
...
...
@@ -135,8 +135,7 @@ class Browser:
try
:
scheme
,
rest
=
uri
.
split
(
":"
,
1
)
if
scheme
==
"nx"
or
scheme
==
"rdp"
or
scheme
==
"sshterm"
:
connection
=
rdp
.
RDP
(
uri
)
Process
(
target
=
connection
.
connect
)
.
start
()
subprocess
.
Popen
([
"/usr/local/bin/rdp"
,
uri
])
return
True
elif
scheme
==
"cloudfile"
:
file_path
=
os
.
path
.
normpath
(
rest
)
...
...
@@ -153,7 +152,7 @@ class Browser:
try
:
os
.
makedirs
(
self
.
folder
)
except
:
p
rint
"Error"
p
ass
result
=
subprocess
.
call
([
'/usr/bin/sshfs'
,
'-o'
,
'IdentityFile='
+
self
.
private_key_file
+
',StrictHostKeyChecking=no'
,
neptun
+
"@"
+
host
+
":home"
,
self
.
folder
])
#print result
def
umount_sshfs_folder
(
self
):
...
...
miscellaneous/laborclient/cloudgui/rdp.py
View file @
483d0f44
...
...
@@ -53,7 +53,10 @@ class RDP:
rdp_command
=
[
"rdesktop"
,
"-khu"
,
"-E"
,
"-P"
,
"-0"
,
"-f"
,
"-u"
,
self
.
username
,
"-p"
,
self
.
password
,
self
.
host
+
":"
+
self
.
port
]
try
:
proc
=
subprocess
.
check_call
(
rdp_command
,
stdout
=
subprocess
.
PIPE
)
except
:
except
subprocess
.
CalledProcessError
as
e
:
if
e
.
returncode
!=
1
:
print
e
print
e
.
returncode
self
.
dialog_box
(
"Unable to connect to host: "
+
self
.
host
+
" at port "
+
self
.
port
)
def
connect_nx
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment