[SOLVED] NAT problems

Hi guys!
I'm newbie in Arch (since yesterday ). I have a network problem. Some sites (and ip addresses) such http://typesafe.com is not available on my laptop and desktop which are connected to Internet through NAT. There is a PC which is staying in living room and connected to the Internet over pppoe - it's "server". There is /etc/netctl/pppoe:
Description='TTK PPPoE connection'
Interface=enp2s6
Connection=pppoe
User='secret'
Password='secret'
# Always keep a connection established
ConnectionMode='persist'
# Use default route provided by the peer (default: true)
DefaultRoute=true
# Use DNS provided by the peer (default: true)
UsePeerDNS=true
Then, /etc/netctl/bridge
/etc/iptables/iptables.rules
Description="Home Bridge connection"
Interface=br0
Connection=bridge
BindsToInterfaces=(enp1s0 wlp2s7)
IP=static
Address=('192.168.0.1/24')
DNS=('141.105.32.88' '141.105.32.89')
## Ignore (R)STP and immediately activate the bridge
SkipForwardingDelay=yes
/etc/dnsmasq.conf
port=53
log-async=5
domain-needed
interface=br0
listen-address=192.168.0.1
bind-interfaces
domain=home.local
dhcp-range=192.168.0.10,192.168.0.150,12h
/etc/resolv.conf
# Generated by resolvconf
nameserver 141.105.32.88
nameserver 141.105.32.89
/etc/hostapd/hostapd.conf
ssid=HomeGroup
wpa_passphrase=password
interface=wlp2s7
bridge=br0
auth_algs=3
channel=7
driver=nl80211
hw_mode=g
logger_stdout=-1
logger_stdout_level=2
max_num_sta=5
rsn_pairwise=CCMP
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
beacon_int=1000
dtim_period=2
max_num_sta=255
rts_threshold=2347
fragm_threshold=2346
wmm_enabled=1
wmm_ac_bk_cwmin=4
wmm_ac_bk_cwmax=10
wmm_ac_bk_aifs=7
wmm_ac_bk_txop_limit=0
wmm_ac_bk_acm=0
wmm_ac_be_aifs=3
wmm_ac_be_cwmin=4
wmm_ac_be_cwmax=10
wmm_ac_be_txop_limit=0
wmm_ac_be_acm=0
wmm_ac_vi_aifs=2
wmm_ac_vi_cwmin=3
wmm_ac_vi_cwmax=4
wmm_ac_vi_txop_limit=94
wmm_ac_vi_acm=0
wmm_ac_vo_txop_limit=47
wmm_ac_vo_acm=0
ieee80211n=1
ht_capab=[HT40+][SHORT-GI-40][TX-STBC][RX-STBC2][DSSS_CK-40]
own_ip_addr=127.0.0.1
/etc/iptables/iptables.rules
# Generated by iptables-save v1.4.21 on Sat Jun 7 18:24:09 2014
*mangle
:PREROUTING ACCEPT [1:382]
:INPUT ACCEPT [1:382]
:FORWARD ACCEPT [1:382]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [1:382]
COMMIT
# Completed on Sat Jun 7 18:24:09 2014
# Generated by iptables-save v1.4.21 on Sat Jun 7 18:24:09 2014
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT ACCEPT [0:0]
:TCP - [0:0]
:UDP - [0:0]
:fw-interfaces - [0:0]
:fw-open - [0:0]
-A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -i br0 -j ACCEPT
-A INPUT -m conntrack --ctstate INVALID -j DROP
-A INPUT -p icmp -m icmp --icmp-type 8 -m conntrack --ctstate NEW -j ACCEPT
-A INPUT -p udp -m conntrack --ctstate NEW -j UDP
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m conntrack --ctstate NEW -j TCP
-A INPUT -p udp -j REJECT --reject-with icmp-port-unreachable
-A INPUT -p tcp -j REJECT --reject-with tcp-reset
-A INPUT -j REJECT --reject-with icmp-proto-unreachable
-A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -j fw-interfaces
-A FORWARD -j fw-open
-A FORWARD -j REJECT --reject-with icmp-host-unreachable
-A fw-interfaces -i br0 -j ACCEPT
COMMIT
# Completed on Sat Jun 7 18:24:09 2014
# Generated by iptables-save v1.4.21 on Sat Jun 7 18:24:09 2014
*nat
:PREROUTING ACCEPT [1:382]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [1:382]
-A POSTROUTING -s 192.168.0.0/24 -o ppp0 -j MASQUERADE
COMMIT
# Completed on Sat Jun 7 18:24:09 2014
Maybe someone can help me? On "server" it's all ok. Every ip or site working well. And DNS server works good I guess.
I don't know how I can fix it by myself. Maybe my iptables rules sucks? Maybe something different sucks ;(
If you need some logs ask me to show it, because I don't know which one you need.
P.S. Sorry for my English.
UPD. Chrome gives me this, when I trying to open site:
Unable to load the webpage because the server sent no data.
Error code: ERR_EMPTY_RESPONSE
UPD 2. With only
# Generated by iptables-save v1.4.21 on Sat Jun 7 21:35:41 2014
*nat
:PREROUTING ACCEPT [7:541]
:INPUT ACCEPT [7:541]
:OUTPUT ACCEPT [24:1306]
:POSTROUTING ACCEPT [0:0]
-A POSTROUTING -o ppp0 -j MASQUERADE
COMMIT
# Completed on Sat Jun 7 21:35:41 2014
# Generated by iptables-save v1.4.21 on Sat Jun 7 21:35:41 2014
*filter
:INPUT ACCEPT [15528:21480359]
:FORWARD ACCEPT [83:4770]
:OUTPUT ACCEPT [8731:529281]
COMMIT
# Completed on Sat Jun 7 21:35:41 2014
# Generated by iptables-save v1.4.21 on Sat Jun 7 21:35:41 2014
*mangle
:PREROUTING ACCEPT [15612:21485161]
:INPUT ACCEPT [15528:21480359]
:FORWARD ACCEPT [83:4770]
:OUTPUT ACCEPT [8731:529281]
:POSTROUTING ACCEPT [8814:534051]
COMMIT
# Completed on Sat Jun 7 21:35:41 2014
in /etc/iptables/iptables.rules situation is similar.
Last edited by slaykovsky (2014-06-08 12:16:35)

Since it's PPPoE, try to clamp MSS to PMTU:
sudo iptables -I FORWARD -i br0 -o ppp0 -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
And please make sure to configure firewall not to MASQUERADE traffic from enp1s0 to ppp0.
And don't forget about IPv6 (http://habrahabr.ru/post/225539/)

Similar Messages

  • ASA5512 iOS 9.3 inside nat problem

    Hi,
    I face some nat problem. i have ASA5512 iOS 9.3 its connect outside (ip: 37.10.1.2/29) for internet and inside (ip 10.78.61.1/24) for LAN and server.
    I configure dynamic nat for internet its work. In LAN switch has 4 VLAN one server VLAN ip add 10.88.61.0/24.
    Now i map a public ip 37.10.1.3 for server 10.88.61.10 from outside internet its work. But when i try to ping server public ip 37.10.1.3 from LAN its not ping but server local ip 10.88.61.10 ping from LAN.
    How can solve the issue i need to ping public ip from LAN. ALL LAN VLAN are nat on ASA outside interface (ip: 37.10.1.2/29).
    interface GigabitEthernet0/0
     description #### Connect TO Internet ####
     nameif outside
     security-level 0
     ip address 37.10.1.2 255.255.255.248 
    interface GigabitEthernet0/1
     description #### Connect TO Core Switch ####
     nameif inside
     security-level 100
     ip address 10.78.61.1 255.255.255.0
    access-list outside-in extended permit ip any any
    access-group outside-in in interface outside
    access-group outside-in in interface inside
    object network obj_any
     subnet 0.0.0.0 0.0.0.0
    object network obj_Ser
     host 10.88.61.10
    object network obj_Ser_WAN
     host 37.10.1.3
    nat (inside,outside) source static obj_Ser obj_Ser_WAN
    object network obj_any
     nat (inside,outside) dynamic 37.10.1.4 
    same-security-traffic permit intra-interface
    Thanks
    Afzal

    Hi,
    Try this NAT:-
    nat (inside,inside) source static obj_Ser obj_Ser_WAN
    Thanks and Regards,
    Vibhor Amrodia

  • When i login to update my existing apps, the login window shows the wrong apple id. and it's all prayed out, i can't change it. how do i solve this problem?

    When I login to update my existing apps, the login window shows the wrong apple id. i cannot change it because it is all grayed out. how do i solve this problem?

    Content and Apple IDs -
    Content is forever tied to the Apple ID that bought it. Apple does not transfer content from one Apple ID to another. Apple does not merge Apple IDs. You will never be able to access your content bought with one Apple ID with a new Apple ID.

  • Can anyone help me solve the problem of text displaying very rough on my new ASUS PA279Q display monitor running off my MacBook Pro?

    This is regarding a brand new ASUS PA 279Q, 2560 x 1440 IPS monitor. I'm connected via mini display port (into thunderbolt port on MacBook Pro) to display port on ASUS monitor; using cable ASUS included with the monitor. Mid 2012 MacBook Pro…full specs at bottom of this post.
    I have resolution set at 2560 x 1440 which is the native resolution according to the ASUS spec. I tried the other resolutions available in my System Preferences and text displayed rough with those settings too. I've tried adjusting contrast, brightness and sharpness via the ASUS control panel and didn't solve the problem. Also tried calibrating via Mac's system preferences/display and that did not improve text display either. All the text on this monitor (no matter what software I launch, Finder, InDesign, Illustrator, MS Word, Excel, VMWare Windows XP, Windows versions of Word, Excel, Acrobat, etc, all are consistently rendering text the same way ---  ROUGH and with "HALOS" around each letter.
    All point sizes of text and at various scales, display very rough on the screen. (My comparison is the retina display of my MBP and a Thunderbolt…so those two displays are my expectations.) I'm using the same MBP for both a Thunderbolt display (at work) and this ASUS at my home office.
    On the ASUS it's not as noticeable when the text is on white backgrounds, but I'm a graphic designer and compose images with text all day everyday. Not to mention the specs on this ASUS PA279Q indicate it's built for the professional so I would expect better text rendering. I haven't even addressed color calibration and balance yet, because that won't matter to me if the text won't display any better than it is now.
    I was so hopeful after researching all the specs on this monitor it would be a viable alternative to the glossy display of the Thunderbolt display. (Which, I do love the Thunderbolt display for it's clarity and how it displays crisp, clean text at all sizes. (This ASUS actually displays text decently if I increase the text so each letter is about 4" high. Which is pointless for practical purposes -- that'd be like doing page layout through a microscope!)
    I kept holding off on getting a monitor for the home office thinking the Thunderbolt would be updated soon. I'd be sick if I dropped a grand on piece of 2011 technology only to learn a few days later an updated Thunderbolt display hit the market! Not to mention, I'm praying Apple comes out with a less reflective Thunderbolt display. The glare and reflection is the main reason I looked elsewhere for a large monitor; hence my asking for help. Hoping the ASUS text display issue can be worked out. My expectation is for it to display like the MBP retina and Thunderbolt display text. That possible?
    Alternatively, I guess I could do the Apple Refurb Thunderbolt at $799. And see if there's a decent aftermarket anti-glare I could stick on it?
    Thanks for reading my post. Hope someone can help; offer any suggestions? Words or wisdom?
    Has anyone else had similar issues and figured out a resolution? Help!
    MacBook Pro
    Retina, Mid 2012, 2.3 Ghz Intel i7
    8GB 1600 MHz DDR3
    OS X 10.8.5
    NVIDIA GeForce GT 650M 1024 MB
    ASUS PA279Q

    I uninstalled those two items. It still runs slow on start-up and when opening safari, firefox, iphoto, itunes, etc. It's not snappy like it used to be. Any other ideas? Thanks.

  • After updating to Firefox 7.0.1, menu bar for Google,yahoo, Facebook (message,notification,profile,home) and others site are disabled. How can solve this problem?

    after updating to Firefox 7.0.1, menu bar for Google(web ,image,video,map etc),yahoo, Facebook (message,notification,profile,home) and others site are disabled. even I cant log out from different sites cz the log out bar is completely disabled. I tried with Firefox 4;5 and 6, same problem exist . I tried by active all add ons for facebook, same problem exist. If I use internet explorer , I don't find such problem with it.
    How can I solve this problem?

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • I recieve SMS and i hear established melody and I do't hear the person on all over SMS. How to solve this problem?

    Problem with an incoming message. For example, during my conversation the second line receives a call, I hear the sound in dynamics such as "piiiip piiiip," but when in this situation I recieve SMS and i hear established melody and I do't hear the person on all over SMS. How to solve this problem? Perhaps someone tell me? save in advance

    Not Charge
    - See:     
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • How I can solve this problem or manipulate it ports 80,443 are closed by ISP and they don't want to open it

    hi,
     I see that I have a particulier abonnee of my ISP , which has closed all the ports for security reason and they don't want to open  any of it 80,443 ect.
    suppose If I want to use Essential server 2012  how I can solve this problem , essential wants domain name whith A record.
    I asked DDNS service provider if I lease from them a domain name whith A record  would that help to open or manipulate the port 80,443  they said that I have to solve this problem myself . they lease only domain names with dynamic dns records.  
     so what can be a solution the ISP provider won't open this ports , how I can solve this problem .   domain name with ip adres is not helping so what it's go to help?
    thanks
    johan
    h.david

    The domain name in this instance is only used for remote access, and is seperate from the active directory domain name.
    If your ISP blocks port 80 and 443, and you dont intend to use remote access anyway, the wizard will likely not complete successfully whether you have a valid domain name or not.
    Robert Pearman SBS MVP
    itauthority.co.uk |
    Title(Required)
    Facebook |
    Twitter |
    Linked in |
    Google+

  • Hello all .. i have a big problem in my ipad version 5.1.1 that is when i connect the ipad with my computer the i tunes give me this message ( itunes couldnt connect to this ipad .an unknown error occurred (0xE8000012).) how i can solve this problem pleas

    hello all .. i have a big problem in my ipad version 5.1.1 that is when i connect the ipad with my computer the i tunes give me this message ( itunes couldnt connect to this ipad .an unknown error occurred (0xE8000012).) how i can solve this problem please
    and this is an pic for the problem

    There is some troubleshooting for 0xE8 error codes on this page : http://support.apple.com/kb/TS3221 - you could see if anything on that page fixes it

  • See who can solve this problem

    Parameter name   || Typing     ||  Associated Type
    ACGL_ITEM         || Structure ||  ACGL_ITEM
    this give error ( Typing is only for Like,Type,Type Ref To )
    therefore i change it to Type
    but it telling me that the ( TABLES parameters are obsolete!)
    guys what can i do, is there a solution to solve this problem??
    Thank you.
    Edited by: guanwei su on Mar 10, 2008 7:05 AM

    The following code might be helpful:
    TYPES: types_t_acgl_item TYPE STANDARD TABLE OF acgl_item.
    DATA: gt_acgl_item TYPE types_t_acgl_item.
    PERFORM sub_perform USING gt_acgl_item.
    *&      Form  SUB_PERFORM
    *       text
    *      -->UT_ACGL_ITEM  test Table
    FORM sub_perform USING ut_acgl_item TYPE types_t_acgl_item.
    ENDFORM.                    " SUB_PERFORM
    Hope That Helps
    Anirban M.

  • If you can solve this problem, then you are a true iPod Classic Genius !

    So I have talked to every level at Apple's iPod support, and to list all the things they made me do would exceed the size limit of this message board. They even made me send back my original iPod Classic, and I had to wait for almost 1 month to receive my replacement. Here is a summary of my problem, that they (Apple support) have not been able to solve :
    - I have a very extensive iTunes collection - over 77,000 songs. All of them were ripped, using iTunes.
    - I use the ID tags extensively - i.e. every field is used, and the comments are filled to the maximum allowed characters.
    - I am not able, to synch more than ~ 23,300 songs to any of my two 160 Gb iPod classics - therefore, including my exchanged iPod, this issue shows up on three different iPods.
    When synching more than 23,300 songs, my iPods are no longer able to play any songs. In the 'About' menu, the iPod shows the wrong number of songs (i.e. 17,300 instead of 24,000) and a huge amount of 'disk space used' is flagged as 'other' (in orange). When clicking on 'Album' or 'Songs', the iPod shows the message 'No songs found'.
    When synching less than 23,300, I am able to resolve this issue by restarting the iPods after synching. However, even when synching less than 23,300 titles, the iPods show the wrong number of songs, right after synching, and the huge amount of 'disk space used' for 'other'. Therefore, I have to restart my iPods every time I synch them.
    The same problem occurs when using my old Power Book G4 (OS X 10.4.10), and on my new 2.4 GHz MacBook Pro (OS X 10.5.1).
    I am using an external HD to hold my music files, which is directly connected to my USB2 port on either Laptop.
    I have uninstalled and re-installed iTunes and all the firmware and software is up-to-date.
    I have rebuilt my iTunes Library from scratch several times.
    I have no problem, playing any of the 77,000+ songs in iTunes.
    My assumption is, that there is a size limit for the iTunes library index file on the iPod. Can somebody confirm this theory ?
    It seems funny, that the same problem shows up on three different iPods using two different Mac computers.
    Does anybody have the same problem ?
    Is this an issue that Apple is ignoring ?
    Does anybody know, how this can be resolved ?
    Thank you very much for your help.!
    Message was edited by: Rochelle Renee Christen

    Hi There,
    I have the exact same problem as you. I'm on my third ipod 160gb. All three have had the freezing and resetting problem. Like you my problems only start once I try to sync more than about 20,000 songs, which is around 90gb.
    I have a 140gb music library. If I sync 70gb of my library it works fine. If I wipe that and sync the other 70gb it works fine so I know my mp3 files are okay. If I try to upload the whole library it freezes when I try to select any music.
    If I'd only wanted to sync half my music library I'd have bought an 80gb ipod.
    I thought firmware 1.1 and itunes 7.6 would solve my problem. No. Exact same problem. I contacted apple support. A genuinely helpful guy advised me to rebuild my music library and change my ipod drive letter. With baited breath I did all this, then restored my ipod to start from a clean slate. I synced my library in 10gb chunks... and it froze up around 90gb just like it always does.
    What upsets me is the hours I've spent glued to my PC re-syncing music, searching through forums for answers. I'm absolutley pig sick of it. I never had a minutes trouble with any of my other ipods.
    Please, please, please apple investigate this problem, it only happens when these ipods are over half full. Please let us have a firmware update that addresses the bugs us folks are complaining about instead of adding new features we'd be grateful for if only our ipods worked in the first place.

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • I have a iPhone 5.  In usage, it says i have 2.1 gigs used because of photos and camera.  I have deleted all my photos via iPhoto and now reset the phone back to factory settings in order to try to solve this problem, to no avail. Help!

    I have a iPhone 5.  In usage, it says i have 2.1 gigs used because of photos and camera.  I have deleted all my photos via iPhoto and now reset the phone back to factory settings in order to try to solve this problem, to no avail.   Both iTunes  and the phone say that 2.1 gigs are being used, even though the phone now has nothing on it.  What is going on?

    Yeah it works fine over wifi the problem is when I try to use it over my 3G. It's really stressing me out now.

  • I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    IF it is a manufacturing defect and you bought the device from Apple or an authorized Apple retailer, then take it into Apple.

  • I can not buy the gem in the "clash of clans" game, It says "My purchase could not be completed". How I can solved this problem?

    I can not buy the gem in the "clash of clans" game, It says "My purchase could not be completed". How I can solved this problem?

    If you are also getting a message to contact iTunes Support then you can do so via this link and ask them for help (we are fellow users here on these forums, we won't know why the message is appearing) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • [SOLVED] Installation problem with pacstrap

    Hi guys, I am a new user of Arch Linux.
    I wanted to try this operating system then I decided to install that on my Asus F200MA. Unfortunately, when I try to install ArchLinux, I get an error while downloading the base packages with pacstrap.
    My HDD is made by 3 partitions:
    /dev/sda1 - 51200 MB: This is the root partition
    /dev/sda2 - 411690 MB: This is the home partition
    /dev/sda3 - 4096 MB: This is the swap partition
    After mounting these partitions, after using the pacstrap command and after the end of the download process, I get a few error messages:
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    ==> ERROR: Failed to install packages to new root
    I really can't understand the reason of these errors, how can I solve the problem?
    For formatting and mounting the partitions I used these commands:
    # mkfs.ext4 /dev/sda1
    # mkfs.ext4 /dev/sda2
    # mkswap /dev/sda3
    # swapon /dev/sda3
    # mount /dev/sda1 /mnt
    # mkdir /mnt/home
    # mount /dev/sda2 /mnt/home
    and then I used this command:
    pacstrap /mnt base base-devel
    Photo of the errors: http://i.imgur.com/4BRhlC7.jpg
    P.S.: Can you also explain me the reason of the signature's errors?
    Thanks for all
    Last edited by xRedFox (2015-04-10 21:59:20)

    Do you use the most recent installation disc image?

Maybe you are looking for

  • Why Will Facetime not let me sign in?

    I got my iPod Touch 4 in San Francisco Apple Store, December 2010. Apple Store Rep helped me set it all up. Everything has been working fine, until a week or so ago when, out of the blue, my FaceTime just stopped working. When I click on the FaceTime

  • ADF Faces: oracle.adf.view.faces.CHANGE_PERSISTENCE

    Does anyone have any information about oracle.adf.view.faces.CHANGE_PERSISTENCE. This appears to be un-documented.

  • Alert Alternative to pass vales to alert in mobile app

    So, I'm converting one of my Flex 4 apps to Flex 4.5 mobile, and I understand Alert shouldn't be used. I looked at Tour de Flex,a nd they have a neat way of making an Alert, but I need to pass a function name and a value which are used. depending on

  • Premiere CS6 Crashing after opening project

    After updating Mac OS to 10.8.2 (which I guess one should not do in the middle of a project, but when are we NOT in the middle of one?) and dumping a couple of non-Adobe applications, I now find that each time I open Premiere Pro to access either yes

  • Forecast Generated from Staffing Plan not showing Actuals Hrs

    Hi I am generating Project Forecast based on staffing plan , still it is not showing the Actual Hrs , though I have timecard for the project. Following are the steps: 1. Created a Forecast Plan Type , added to Project. 2. Created a version where sour