mobaxterm无法拖拽上传

问题:无法拖拽上传
解决方案:下载插件放到安装目录
插件名:CygUtils.plugin
下载地址:https://mobaxterm.mobatek.net/plugins.html

当需要连接远程linux并运行X程序时,很多朋友首先想到的是NetSarang Xmanager, 虽然这个工具的确很好用,不过这个软件不是免费的,所以银子不多的人得另外想办法。今天给大家介绍一款全功能SSH/X远程客户端-Xmanager最佳替代品终端软件,它就是MobaXterm。 Version 11.0 (2018-11-01) New feature: native integration of WSL (Windows Subsystem for Linux) into MobaXterm – run WSL into MobaXterm advanced terminal instead of Windows console and run graphical applications thanks to MobaXterm X server New feature: new experimental local terminal package “CygUtils64.plugin” comes with ZSH shell, 64-bit console utilities and improved apt-get packages manager – activate it from global settings, “terminal” tab New feature: added a new global setting in order to choose which local shell to use (Bash, ZSH (64-bits), Cmd, Powershell, or one of the Linux WSL distributions) Improvement: enhanced the Remote Monitoring bar to display information in red or orange when the values reach critical levels Improvement: improved SSH-browser performances, especially when remote folder contains many files/folders Improvement: improved sessions tree performances, especially when number of sessions is greater than 100 Improvement: reworked the global settings window for easier settings identification Improvement: improved compatibility of “Follow terminal folder” feature with remote Unix/Linux environments Improvement: added a prompt dialog in order to assign right-click action (context menu or paste) the first time you right-click into the terminal Improvement: updated OpenSSH client to version 7.5 when the new local terminal package is selected Improvement: updated “top”, “ps”, “ldd”, “kill”, and other core commands when the new local terminal package is selected Improvement: you can now specify the color of each tab by right-clicking on the tab or by specifying a custom tab color for each session Improvement: improved MobaXterm startup speed by using lazy loading for resources which may be unused Improvement: prevent the remote monitoring bar from disappearing temporarily when switching between tabs Improvement: updated icons for files/folders in SSH-browser and (s)FTP sessions Improvement: updated tray icon to the new MobaXterm flat logo Improvement: after choosing Bash or Zsh terminal in global settings, if you do not have the CygUtils plugin on your computer, a popup window prompts you to download it Improvement: updated PuTTY-based SSH engine to the latest version Improvement: adapted default settings to Brocade switches on SSH sessions Improvement: updated terminal smart selection to better detect URLs and delimiters when using default settings Improvement: added 5 manual Ini settings under the “Misc” section in order to control smart selection behavior (ForcedLeftDelimChars, ForcedRightDelimChars, DisabledLeftDelimChars, DisabledRightDelimChars and SmartDelimsForUrls) Improvement: with default syntax, URLs are now underlined – remember that you can ctrl+click them to open in default browser Improvement: improved size of main executable by removing unused code and optimizing several subfunctions Improvement: decreased latency when navigating through tabs, especially for SSH sessions Improvement: tooltips in the Remote Monitoring bar are now displayed using fixed font if necessary Improvement: disk usage tooltip values are displayed in human-readable format Improvement: try to detect Nexus devices and to avoid startin SCP when connecting through SSH Improvement: improved SFTP / FTP / S3 sessions performances, especially when remote folder contains many files/folders Improvement: after terminal has been paused (Ctrl+S), any key will “unfreeze” it. Many users thought that terminal was frozen after accidentally hitting Ctrl+S Bugfix: after setting the graphical interface elements size from global settings, modifications are properly applied at first MobaXterm restart Bugfix: fixed detection of disk space in remote monitoring when “df” returns results splitted across multiple lines Bugfix: when hitting “R” to reconnect a SSH session, if the gateway had been disconnected, MobaXterm will try to reconnect it first Bugfix: fixed some checkboxes placements, elements sizes and placements for High-DPI monitors Bugfix: fixed syntax highlighting which was disabled when running systemctl commands Bugfix: fixed VNC connections issues through SSH gateway (jump host) when new VNC engine was selected Bugfix: fixed an issue with hidden sidebar when it was set to the right and monitor DPI was above 144 pixels per inch Bugfix: MobaXterm now handles properly pipes characters in sessions folders names Bugfix: MobaXterm now handles properly arobase characters in tunnels usernames Bugfix: MobaXterm now handles properly arobase characters in stored passwords usernames Bugfix: fixed some visual flickering effects which occured on some buttons when mouse was over them Bugfix: the SSH-browser no longer follows the wrong terminal when the same SSH session is connected twice Bugfix: removed an unnecessary delay when waiting for the X server to start up Bugfix: passwords defined for VNC, telnet or FTP services were sometimes lost after restarting MobaXterm Bugfix: fixed some flickering effects which occured into Home tab after MobaXterm startup Bugfix: upload of multiple files in SSH-browser no longer gets stuck when “SSH preserve files dates” setting is activated Bugfix: fixed remote edition of multiple files in SSH-browser when remote files had the same names Bugfix: aligned sessions tree to the left at start up Bugfix: fixed some issues with MobApt when downloading old packages Bugfix: disabled “Remote monitoring” feature for SSH connections to Cisco routers Bugfix: “MobaFoldersDiff” tool has been re-added, after fixing the startup issue Bugfix: added “VISUAL” environment variable in order to fix potential issues with “crontab” command Version 10.9 (2018-08-02) Improvement: when SSH-browser is disabled, remote-monitoring feature is now also disabled, in order to avoid issues on Cisco routers Improvement: the experimental CygUtils64 plugin can be used with MobaXterm. If you want to test it, you can download it at https://mobaxterm.mobatek.net/CygUtils64.plugin Bugfix: fixed the “live-unpack” mechanism for local terminal plugins – some plugins were not working properly in “installed mode” or when using “persistent root” Bugfix: fixed some issues with X server detection which led to the “X” icon to stay red whereas X11 server was started Bugfix: fixed some issues with “Follow terminal folder” when remote monitoring was enabled
### 如何解决 MobaXterm 文件拖拽上传失败问题 #### 修改文件权限 当遇到MobaXterm文件拖拽上传失败的问题时,可能是由于目标文件夹的权限不足所引起的。可以通过修改文件夹权限的方式解决问题。具体操作是在终端中使用`chmod`命令将文件夹权限设置为777,这样可以赋予所有用户读写执行的权限[^2]。 ```bash chmod 777 /path/to/directory ``` 另一种方式是通过图形界面完成相同的操作,在MobaXterm中的文件管理器里找到对应的文件夹,右键点击选择属性选项,然后勾选所有的权限项。 #### 使用 Root 用户登录 如果上述方法仍然无法解决问题,则可能是因为当前使用的不是具有管理员权限的账号。对于Ubuntu系统,默认情况下并不允许直接以root身份进行SSH连接。为了能够顺利地传输文件,建议按照如下步骤调整: - 登录至服务器后利用sudo编辑配置文件 `/etc/ssh/sshd_config` ,取消对 `PermitRootLogin prohibit-password` 这一行前面的注释符号,并在其下方新增一条记录 `PermitRootLogin yes` 来启用root用户的远程登陆功能[^3]。 ```bash sudo nano /etc/ssh/sshd_config ``` - 完成编辑保存退出之后记得重启SSH服务使新的设定生效: ```bash sudo systemctl restart sshd ``` - 接下来就可以尝试重新启动一个新的会话并以root的身份来进行连接测试了。需要注意的是这样做存在一定的安全隐患,请谨慎考虑是否真的有必要这么做以及采取适当的安全措施保护好自己的环境。 #### 配置 SFTP 功能 另外一种可能性在于SFTP子系统的配置不当也可能造成同样的现象。此时应该检查位于`/etc/ssh/sshd_config`内的有关于Subsystem sftp部分的内容,确保其被正确指定了内部实现而非外部程序路径。通常来说应该是这样的形式:Subsystem sftp internal-sftp 。最后同样别忘了再次重载一次SSH守护进程以便让改动即时起效[^4]。 ```bash Subsystem sftp internal-sftp ``` 以上便是针对不同情况所提供的几种解决方案,希望能够帮助到正在面临此类困扰的朋友。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值